Kevin Hilt

Results 2 comments of Kevin Hilt

In case anyone else is having this problem, a quick fix in my case was calling `setAlpha(0.99f)` on either your CanvasView object or a view containing it. It's not ideal,...

@jackmiras I'm setting the alpha for the instance of CanvasView I'm using. For example, in your activity onCreate(), you could do, `CanvasView myCanvasView = (CanvasView)findViewById(R.id.my_canvas_view_id); myCanvasView.setAlpha(0.99f);`