同一份代码如下,在不同的模拟器上出现不同结果
res/layout/activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="this small layout"/>
</LinearLayout>
res/layout-large/activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="this large's layout"/>
</LinearLayout>
入口mainactivity
package com.example.xiongchaochao.myapplication;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
结果:
刚才才说同一份代码,不同的结果,这里为什么会出现相同的结果呢?
- 这里引入一个知识点:android 3.2版本之后,用smallest-width Qualifier最小宽度限定符取代了large,它定义最小宽度,如果设备屏幕宽度大于这个值,就视作大屏幕,使用大屏幕布局
根据上面的知识点,知道之所以出现这种情况,是因为这个large的最小宽度小于720px(模拟器分辨率为720p,版本为4.2)
所以要显示手机屏幕的布局,将layout-large文件夹更新为:layout-sw720dp,这里具体临界数值(大于临界值显示大屏布局,小于临界值显示小屏布局),需要计算,我这里只是一个泛值