默认情况下支持android中的多个屏幕

时间:2014-09-25 10:32:15

标签: android android-screen-support

我正在寻找支持Android中的多个屏幕

假设我在项目中使用了以下结构

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

  1. 因此,如上所述我提供了三种类似的布局 normal screenlarge screenextra-large screen这样 取适当的xml。
  2. 现在我从项目中删除了res/layout-xlarge/my_layout.xml 结构

  3. 问题::

    • 如果现在我在extra-large screen中运行我的应用程序 my_layout.xml将取自我的项目结构normal screen sizelarge screen size,因为extra-large screen是 删除。
    • 发生这种情况的原因

1 个答案:

答案 0 :(得分:0)

如果现在我在超大屏幕上运行我的应用程序my_layout.xml将从我的项目结构中获取?

        The layout in res/layout-large/my_layout.xml will be taken to run your application.

    Reason why this happens?

       layout-large is selected to run your application because it is the layout that has the size closer to the layout-xlarge.