I tried to make a custom LinearLayout and Button styles.
I’m just wondering where to place my Selector xml files?
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:angle="90"
android:startColor="#534E4E"
android:endColor="#000000"
android:type="linear" />
</shape>
</item>
In my mono project I put the files at drawable folder BUT in my Java(native) development I don’t know maybe I miss the basic in storing files but still have no Idea where to put my Selector since the latest Eclipse plugin has 4 drawables (-ldpi,-hdpi, mdpi and xhdpi).
Create a drawable/ folder in the res/ directory and add the selector.xml files in there.