Got this really stupid problem:
Can find the proper name for the android folder for WVGA800 resources.
I've created a folder for WVGA854: drawable-normal-long-hdpi
It worked totally fine.
For WVGA800 I've tried 'drawable-normal-notlong-hdpi' - emulator and handset still gets resources from
'drawable', not even 'drawable-normal-long-hdpi'.
Tried using 'drawble-hdpi', 'drawable-notlong-hdpi' - nothing works, it keeps using 'drawable' for resources.
How should the folder for WVGA800 be named?
UPD:
Using
supports-screens android:anyDensity="true"
Didnt solve the problem.
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"/>
Is there a way to debug what resource folder is used and why?
views:
34answers:
1
A:
All seems correct, except you did a spelling mistake: "drawble". Check your directory names.
I suggest you try a more permissive resource filter first. Separate your assets in drawable-long
and drawable-notlong
, and see if it works.
DavLink
2010-10-29 09:15:27
'drawble' - just mistyped=) Also already have a folder 'drawable-notlong', still, emulator gets res from 'drawable'
Jitsu
2010-10-29 09:18:46