Tagged Questions

12
votes
2answers
33k views

Android : Customizing tabs on state : How do I make a selector a drawable

I know how to put the icon on each tab, that is no problem. I also ran across this : Stack Overflow thread on pretty much same thing I followed one of the links from that question, and found this ...
8
votes
2answers
4k views

replace selector images programmatically

I have an ImageView that has a drawable image resource set to a selector. How do I programmatically access the selector and change the imgages of the highlighted and non-highlighted state? Here is a ...
3
votes
1answer
123 views

State maintainance for a button (Resource handling) in Android?

I have achieved that to maintain the state of a button using selector XML component. See the code snippet for example. <?xml version="1.0" encoding="utf-8"?> <selector ...
2
votes
1answer
468 views

NullPointerException in Drawable's mutate method Android 1.6

When using mutate on Android 1.6 with list state Drawable I got always a Null Pointer Exception. It works flawlessly on higher Android versions. I am using the default android list_selector_background ...
1
vote
3answers
1k views

android drawable invalid start tag

I'm trying to set a tabhost selector, as i found an example demonstrating that i should create an xml file in drawable like this : <?xml version="1.0" encoding="utf-8"?> <selector ...
0
votes
1answer
55 views

Cannot load button background as a selector drawable

I keep getting "org.xmlpull.v1.XmlPullParserException: Binary XML file line #4: tag requires a 'drawable' attribute or child tag defining a drawable" when I'm trying to load a selector drawable as a ...
0
votes
4answers
136 views

Drawable with selector?

in drawable folder: <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/icon2" /> ...
0
votes
3answers
152 views

Problem creating a custom ListView selector

When I try clicking on a a listview item no selector is shown. Here is my ListView <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
0
votes
1answer
398 views

Change shape and color of ToggleButton(or maybe somthing else)?

I want a togglebutton that looks like a fire or spark. I want to indicate when the button is selected and when its not. As far as I know this can be done using a Selector-drawable. Now I want to ...