Reputation: 731
For my app I would like to now what would happen if i had 2 folders: drawable-xlarge and drawable-tvdpi what will happen if I have a device with both asn xlarge screen and a tvdpi screen? How can I make the tvdpi take priority? Thanks!
Upvotes: 0
Views: 831
Reputation: 36312
As to what will happen, look at the article on Providing Resources, particularly the Best Match section. The process that Android uses can be summarized as follows:
Note the precedence of the qualifiers in table 2.
You may need to specify a more specific set of qualifiers (e.g. drawable-xlarge-tvdpi
).
Upvotes: 2