The Android Java Canvas (android.
EDIT: The real problem was that my LinearLayout was wrapped in another layout, which caused the incorrect behavior. The accepted …
android android-layout android-canvas android-support-library android-recyclerviewI'm currently implementing a draw function on a webview image (the elephant below). I don't have a problem drawing on …
android android-canvasThe documentation is pretty vague as to what is actually happening when these methods are used. Can someone explain how …
android matrix bitmap android-canvasI'm developing an application in which I'm pasting images, doing drawing and painting on canvas. This app can also Scale …
android position scaling android-canvas touch-eventI currently create a rounded version of an image in my app by drawing to a canvas. I would like …
android android-canvasI'm new to Android. I am drawing bitmaps, lines and shapes onto a Canvas inside the OnDraw(Canvas canvas) method …
android android-canvas smooth-scrollingI can fill rectangle with canvas draw rect: Rect rt = new Rect(0, 0, getWidth(), getHeight()); myPaint.setColor(myColor); myPaint.setStyle(Style.…
android android-canvasI've been trying to create a custom view which has blurred shapes under text. The problem is that the BlurMaskFilter …
android android-canvas android-4.0-ice-cream-sandwich blurThe goal is to draw a bitmap and over the top of something, and draw shapes that ERASE the underlying …
java android bitmap android-canvas ondrawI have a drawing app that takes about 2-5 seconds to load the drawing for complicated drawings (done via an …
android surfaceview android-canvas