I would like to provide different drawable resources for different orientations. What is the proper folder name to provide a landscape and portrait version of a drawable? I looked through the android documentation and haven't seen anything like drawable-hdpi-land
or drawable-hdpi-port
. Are these the proper names?
Asked
Active
Viewed 1.3k times
11

james
- 26,141
- 19
- 95
- 113
1 Answers
18
it's drawable-land-hdpi etc, see the documentation for the full order:
http://developer.android.com/guide/topics/resources/index.html

blejzz
- 3,349
- 4
- 39
- 60
-
1[Here](https://developer.android.com/guide/topics/resources/providing-resources.html#table2) you can find more details. – testing Aug 24 '16 at 13:30