Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
695 views

Android Gauge Animation Question

Okay so i've been trying to do this for a couple of days and i am getting no where. So i have the following two images: The First is a RPM Gauge The Second image is a full white graphic ...
3
votes
1answer
111 views

PorterDuff and Path

In my project I have a bitmap filling the entire screen. On this bitmap i draw a path with android.graphics.Canvas.drawPath(Path path, Paint paint) the paint is set in order to stroke and fill the ...
1
vote
0answers
29 views

android: How to create overlay blend like photoshop?

I am tring achive overlay blend (like photoshop)in my android application. I have tried differnt PorterDuff.Modes (i.e. SCREEN, MYLTIPLY etc) with differnt combinations but could not achive the ...
1
vote
1answer
134 views

What does PorterDuff.Mode mean in android graphics.What does it do?

I would like to know what PorterDuff.Mode means in android graphics.I know that it is a transfer mode.I also know that it has attributes such as DST_IN ,Multiply etc. Still i can't get the gist of ...
1
vote
1answer
259 views

Android color overlay - PorterDuff modes

I have a black & white ninepatch drawable as the background of a view and I would like to apply a color on it, like a semi-transparent overlay that leaves the background drawing visible but ...
1
vote
2answers
510 views

Android Circle Manipulation

I have a PNG of a full circle. I would like to do an animation of the circle being drawn through each quadrant (as in it draws itself clockwise). How can i do this? anyone with an example?
1
vote
1answer
320 views

Android Scratch card app

I am doing a small project for college and wondering if someone can tell me how I would go about doing a scratch card app. This app should have One image overlaying another. The one on top should ...
1
vote
1answer
398 views

Mapping CoreGraphics Blend Modes to Porter-Duff

I have an iPhone app that does image manipulation via blending two UIImage objects via CoreGraphics, specifically CGContextSetBlendMode. I am currently researching porting it to Android. I've gone ...
0
votes
1answer
45 views

PorterDuff.Mode.MULTIPLY - the sence of this color transformation in Android

Under default Android theme I have three custom colored buttons by means of button.getBackground().setColorFilter(customColor, PorterDuff.Mode.MULTIPLY); When I switch to Theme.Holo by means of ...
0
votes
1answer
116 views

Conditional Formatting for Android Button

Likely a simple answer, but I can't seem to find anything related to "conditional" (pardon the Excel term) Android button formatting in Java, without onClick. In a nutshell, I need to set the ...
0
votes
0answers
228 views

FingerPaint PorterDuff.Mode.Clear always draws black

I'm trying to create a scratchcard type effect in my application where a bitmap will be made transparent as the user rubs it. I've used the FingerPaint example in the API demos as inspiration and have ...
0
votes
1answer
226 views

Android Alpha Masking question

in my overridden onDraw() function i have a canvas with two gauges in it (gauges are PNG's). The gauges are stacked on top of eachother. I would like only half of the gauge on the top to show while ...