I am looking at supporting multiple screens in android
Assume i have used below structure in the project
res/layout/my_layout.xml // layout for normal screen size
res/layout-large/my_layout.xml // layout for large screen size
res/layout-xlarge/my_layout.xml // layout for extra-large screen size
- So as above i am providing three similar layouts where in case of
normal screen,large screen,extra-large screenso that appropriate xml's are taken. - Now i delete the
res/layout-xlarge/my_layout.xmlfrom my project structure
Questions::
- If now i run my application in
extra-large screenwhichmy_layout.xmlwill be taken from my project structure is itnormal screen sizeorlarge screen sizebecauseextra-large screenis deleted. - Reason why this happens
0 comments:
Post a Comment