Top "Android-canvas" questions

The Android Java Canvas (android.

Bitmap not drawn anti-aliased

I have a custom View that always draws a Bitmap at a certain rotation. I overwrite the onDraw method, rotate …

android android-canvas android-custom-view
how to make full circular image view in android

Possible Duplicate: How to make an image fit into a circular frame in android I want a 360 degree circular shape …

android android-layout imageview android-canvas
Plot Multiple Charts in one in MPAndroidChart

I have to plot two different dataSets in a single graph. DataSet-1 String[] xAxisOne = new String[] { "0", "1", "2", "3", "4", "5", "6" }; float[] dataInput = { 1f, 2f, 3…

android android-canvas mpandroidchart
Drawing text at an angle (e.g. upside down) in Android

I'm trying to build a custom clock view in Android. See image http://twitpic.com/1devk7 So far to draw …

android android-canvas drawtext
Android Paint setShadowLayer() ignores color of its Paint

I'm trying to create a Bitmap programmatically and am finding drawing a shadowed Rect is ignoring the color arg passed …

android android-canvas paint shadow
Getting the pixel color value of a point on an Android View that includes a Bitmap-backed Canvas

I'm trying to figure out the best way to get the pixel color value at a given point on a …

android graphics view android-canvas
On Android how do I make oddly shaped clipping areas?

Here is how to create a clipping area the shape of a circle: Path path = new Path(); path.addCircle(200,200,100,Direction.…

android android-canvas dalvik masking
Android SDK - camera2 - Draw rectangle over TextureView

Im new to android development, and I'm finding it hard to find good examples on the camera2 api. Im working …

android android-layout android-camera android-canvas textureview
Work around Canvas.clipPath() that is not supported in android any more

From android 3.0 the clipPath() method is no longer supported in devices with hardware acceleration turned on.(Read this article for …

android android-canvas hardware-acceleration
How to outline a TextView?

What I want to do? (blue will be changed as white) What I did? I have found a class which …

android fonts android-canvas draw stroke