Reputation: 3342
Android emulator uses wrong layout resources ,i'm having a two layout hdpi, mdpi but in emulator get a wrong one why .... I added in my manifest file ,
<supports-screens
android:anyDensity="true"
android:smallScreens="true"
android:largeScreens="true"
android:normalScreens="true"
/>
Upvotes: 0
Views: 147
Reputation: 4661
In andorid drawable resources usage is depends on ppi.
Please refer the link http://developer.vodafone.com/image-and-graphics-tips-android/
You have to change the emulator ppi values and try your's. Thanks...
Upvotes: 1