I developed application on 1.6.in manifest i gave:
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>.
When I run application in android 1.5 version.i am getting error
java.io.FileNotFoundException: res/drawable/title_bar_shadow.9.png
If I make one drawable folder and keep the images inside drawable. It is working is it good for make one drawable folder with android 1.6.
How to make it run on android 1.5?
Where did you place
the title_bar_shadow.9.png?If your 9patch is in a
drawable-[ldpi|mdpi|hdpi]folder it will not work.Check this thread to see how to fix it.