Layout-sw320dp is always selectedWhat's “tools:context” in Android layout files?Android Layout: same device size family, different real device sizesAndroid App is not compatible with Samsung galaxy S4Android is not picking right dimens.xml file from values folderDifferent screen sizes layoutSupport different layouts sizesCreating layout subfolder for different screen sizesLandscape Orientation: What are the correct layout folders for multi-screens in androidEmulator, Device, Android Studio Layout Differences in NotificationEmulator views only show the values from sw320dp?
Was the 45.9°C temperature in France in June 2019 the highest ever recorded in France?
Do grungs have a written language?
How did Einstein know the speed of light was constant?
Can the Four Elements monk's Shape the Flowing River elemental discipline create stairs by expending a single ki point?
Why do most airliners have underwing engines, while business jets have rear-mounted engines?
Park the computer
I'm feeling like my character doesn't fit the campaign
When is one 'Ready' to make Original Contributions to Mathematics?
Better random (unique) file name
Array or vector? Two dimensional array or matrix?
Attach a visible light telescope to the outside of the ISS
Groups where no elements commute except for the trivial cases
Do intermediate subdomains need to exist?
What purpose does mercury dichloride have in fireworks?
Pressure in giant ball of water floating in space
Computer name naming convention for security
What is the fundamental difference between catching whales and hunting other animals?
What is the meaning of "prairie-dog" in this sentence?
What was the significance of Spider-Man: Far From Home being an MCU Phase 3 film instead of a Phase 4 film?
Do Goblin tokens count as Goblins?
How to find the version of extensions used on a Joomla website without access to the backend?
comparing two addresses
Why is there paternal, for fatherly, fraternal, for brotherly, but no similar word for sons?
Wouldn't putting an electronic key inside a small Faraday cage render it completely useless?
Layout-sw320dp is always selected
What's “tools:context” in Android layout files?Android Layout: same device size family, different real device sizesAndroid App is not compatible with Samsung galaxy S4Android is not picking right dimens.xml file from values folderDifferent screen sizes layoutSupport different layouts sizesCreating layout subfolder for different screen sizesLandscape Orientation: What are the correct layout folders for multi-screens in androidEmulator, Device, Android Studio Layout Differences in NotificationEmulator views only show the values from sw320dp?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
To support multi screen size devices, I created two layout folders for my xml: layout-sw320dp and layout sw480dp folder in layout folder. Then I tested my xml in Nexus S (4 inch) emulator, Galaxy S3 (4.8 inch) emulator, and Galaxy S7 (5.1 inch) actual device. But for some reason, the xml version in layout-sw320dp version is always selected. I browsed the internet, and it seems I should consider additionally density also. If so, how I can do this?
android android-layout
add a comment |
To support multi screen size devices, I created two layout folders for my xml: layout-sw320dp and layout sw480dp folder in layout folder. Then I tested my xml in Nexus S (4 inch) emulator, Galaxy S3 (4.8 inch) emulator, and Galaxy S7 (5.1 inch) actual device. But for some reason, the xml version in layout-sw320dp version is always selected. I browsed the internet, and it seems I should consider additionally density also. If so, how I can do this?
android android-layout
the qualifiersw
should be based on the smallest size (either width or height) of the screen, I think480dp
would be the smallest size for a tablet, not a phone. It sounds like you needw320dp
instead ofsw
– lelloman
Mar 25 at 21:00
If you need separate lyouts for those 3 very similar sizes, you're probably not implementing your UI correctly.
– Gabe Sechan
Mar 25 at 21:05
In my xml, I used extensively, margins and width and heights with fixed dp. That is why, my xml needs to be rendered correctly for these multiple screens.
– dorj bayar
Mar 25 at 21:33
add a comment |
To support multi screen size devices, I created two layout folders for my xml: layout-sw320dp and layout sw480dp folder in layout folder. Then I tested my xml in Nexus S (4 inch) emulator, Galaxy S3 (4.8 inch) emulator, and Galaxy S7 (5.1 inch) actual device. But for some reason, the xml version in layout-sw320dp version is always selected. I browsed the internet, and it seems I should consider additionally density also. If so, how I can do this?
android android-layout
To support multi screen size devices, I created two layout folders for my xml: layout-sw320dp and layout sw480dp folder in layout folder. Then I tested my xml in Nexus S (4 inch) emulator, Galaxy S3 (4.8 inch) emulator, and Galaxy S7 (5.1 inch) actual device. But for some reason, the xml version in layout-sw320dp version is always selected. I browsed the internet, and it seems I should consider additionally density also. If so, how I can do this?
android android-layout
android android-layout
edited Mar 25 at 21:00
Zoe
16.3k9 gold badges63 silver badges95 bronze badges
16.3k9 gold badges63 silver badges95 bronze badges
asked Mar 25 at 20:53
dorj bayardorj bayar
57 bronze badges
57 bronze badges
the qualifiersw
should be based on the smallest size (either width or height) of the screen, I think480dp
would be the smallest size for a tablet, not a phone. It sounds like you needw320dp
instead ofsw
– lelloman
Mar 25 at 21:00
If you need separate lyouts for those 3 very similar sizes, you're probably not implementing your UI correctly.
– Gabe Sechan
Mar 25 at 21:05
In my xml, I used extensively, margins and width and heights with fixed dp. That is why, my xml needs to be rendered correctly for these multiple screens.
– dorj bayar
Mar 25 at 21:33
add a comment |
the qualifiersw
should be based on the smallest size (either width or height) of the screen, I think480dp
would be the smallest size for a tablet, not a phone. It sounds like you needw320dp
instead ofsw
– lelloman
Mar 25 at 21:00
If you need separate lyouts for those 3 very similar sizes, you're probably not implementing your UI correctly.
– Gabe Sechan
Mar 25 at 21:05
In my xml, I used extensively, margins and width and heights with fixed dp. That is why, my xml needs to be rendered correctly for these multiple screens.
– dorj bayar
Mar 25 at 21:33
the qualifier
sw
should be based on the smallest size (either width or height) of the screen, I think 480dp
would be the smallest size for a tablet, not a phone. It sounds like you need w320dp
instead of sw
– lelloman
Mar 25 at 21:00
the qualifier
sw
should be based on the smallest size (either width or height) of the screen, I think 480dp
would be the smallest size for a tablet, not a phone. It sounds like you need w320dp
instead of sw
– lelloman
Mar 25 at 21:00
If you need separate lyouts for those 3 very similar sizes, you're probably not implementing your UI correctly.
– Gabe Sechan
Mar 25 at 21:05
If you need separate lyouts for those 3 very similar sizes, you're probably not implementing your UI correctly.
– Gabe Sechan
Mar 25 at 21:05
In my xml, I used extensively, margins and width and heights with fixed dp. That is why, my xml needs to be rendered correctly for these multiple screens.
– dorj bayar
Mar 25 at 21:33
In my xml, I used extensively, margins and width and heights with fixed dp. That is why, my xml needs to be rendered correctly for these multiple screens.
– dorj bayar
Mar 25 at 21:33
add a comment |
1 Answer
1
active
oldest
votes
Maybe this helps:
You wrote that you created your folders layout-sw320dp
and layout_sw480dp
inside of the normal layout
folder.
They should all be on the same level src/main/res
instead of inside the layout
folder.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346240%2flayout-sw320dp-is-always-selected%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Maybe this helps:
You wrote that you created your folders layout-sw320dp
and layout_sw480dp
inside of the normal layout
folder.
They should all be on the same level src/main/res
instead of inside the layout
folder.
add a comment |
Maybe this helps:
You wrote that you created your folders layout-sw320dp
and layout_sw480dp
inside of the normal layout
folder.
They should all be on the same level src/main/res
instead of inside the layout
folder.
add a comment |
Maybe this helps:
You wrote that you created your folders layout-sw320dp
and layout_sw480dp
inside of the normal layout
folder.
They should all be on the same level src/main/res
instead of inside the layout
folder.
Maybe this helps:
You wrote that you created your folders layout-sw320dp
and layout_sw480dp
inside of the normal layout
folder.
They should all be on the same level src/main/res
instead of inside the layout
folder.
answered Mar 27 at 16:51
0xFEFFEFE0xFEFFEFE
9010 bronze badges
9010 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346240%2flayout-sw320dp-is-always-selected%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
the qualifier
sw
should be based on the smallest size (either width or height) of the screen, I think480dp
would be the smallest size for a tablet, not a phone. It sounds like you needw320dp
instead ofsw
– lelloman
Mar 25 at 21:00
If you need separate lyouts for those 3 very similar sizes, you're probably not implementing your UI correctly.
– Gabe Sechan
Mar 25 at 21:05
In my xml, I used extensively, margins and width and heights with fixed dp. That is why, my xml needs to be rendered correctly for these multiple screens.
– dorj bayar
Mar 25 at 21:33