After long study from Best way to handle shape drawable differences Android 2.3.5 vs 4.0 , Drawable-hdpi, Drawable-mdpi, Drawable-ldpi Android , And this tutorial and this best tutorial I have started to do sample application.
I have stored the following shape in res/drawable-ldpi
<stroke
android:width="2dp"
android:color="#FFFFFFFF" />
<gradient
android:angle="225"
android:endColor="#ffa500"
android:startColor="#DD000000" />
<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="7dp"
android:radius="0.1dp"
android:topLeftRadius="0dp"
android:topRightRadius="7dp" />
and the following in res/drawable-hdpi
,res/drawable-mdpi
,res/drawable-xhdpi
,res/drawable-v14
<stroke
android:width="2dp"
android:color="#FFFFFFFF" />
<gradient
android:angle="225"
android:endColor="#ffa500"
android:startColor="#DD000000" />
<corners
android:bottomLeftRadius="7dp"
android:bottomRightRadius="0dp"
android:radius="0.1dp"
android:topLeftRadius="0dp"
android:topRightRadius="7dp" />
it looks like this in all type of emulators . that is in hvga , qvga , version 4.0.3 and samsung duos
but in micromax funbook why it looks like this.
what's the problem here. Is there anything else I want to do. Help me friends. Thanks in advance.