Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
856 views

How can I manipulate the camera preview?

There are several tutorials out there which explain how to get a simple camera preview up and running on an android device. But i couldn't find any example which explains how to manipulate the image ...
7
votes
5answers
3k views

Understanding the Use of ColorMatrix and ColorMatrixColorFilter to Modify a Drawable's Hue

I'm working on a UI for an app, and I'm attempting to use grayscale icons, and allow the user to change the theme to a color of their choosing. To do this, I'm trying to just apply a ColorFilter of ...
3
votes
1answer
497 views

Creating a Custom Subclass of ColorFilter?

Okay, so this is somewhat related to my previous question on the ColorMatrixColorFilter, but I feel it's a significantly different question. I'm wondering if there's a way - or rather, how to extend ...
1
vote
0answers
36 views

Android: Exception applying a ColorMatrixColorFilter to a Paint object, but only for certain Bitmaps

I am kind of a beginner to Android programming, but I've spent a lot of time pinning this down, so hopefully someone knows what's going on. My app has a bunch of Thing objects, each of which has a ...
1
vote
1answer
453 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
364 views

Ninepatch scaling wrong when scrolling after applying a Colorfilter?

today i tried to make my listview a bit more dynamic. So i created a white ninepatch-image and added a colorfilter with the .setColorFilter method. That's not the problem. But after applying this, ...
0
votes
0answers
78 views

the bug about colorfilter in android below 2.3

i want the button has an effect when click down. so,i use colorfilter public class ButtonTouchStateListener implements OnTouchListener { @Override public boolean onTouch(View v, MotionEvent event) { ...
0
votes
2answers
843 views

StateListDrawable to switch colorfilters

I want to create custom buttons to use in a TabHost. I haven been trying to just use the same image resource (png), but have the colorfilter change depending on the state. So I made this bit to serve ...
-1
votes
1answer
687 views

Android button setColorFilter behaviour

I have 4 buttons on my application, and when a user clickes certain button I change that button color. when button 3 is clicked I want to change his color to green, otherwise I want remove his green ...