Android layout folders for different screen sizes
问题 I have an app that I need to ensure different devices are pulling from different layout folders. I need a nexus 5 (1920 x 1080) to pull from a different folder than a Note 4 (2560 x 1440). Currently, no matter what combination of folder names, they both pull from the same folder. I have tried: layout-xxhdpi & layout-xxxhdpi (they both pull from xxhdpi) layout-sw320dp & layout-xxhdpi (they both pull from layout-sw320dp layout-large & layout-xlarge (they both pull from layout-large) What would