哪个兼容屏幕?

时间:2015-12-16 09:37:11

标签: android xml android-layout android-activity android-studio

我应该使用:

  <compatible-screens>
        <screen
            android:screenDensity="ldpi"
            android:screenSize="small" />
    <screen
        android:screenDensity="mdpi"
        android:screenSize="normal" />
    <screen
        android:screenDensity="xhdpi"
        android:screenSize="large" />
    <screen
        android:screenDensity="xhdpi"
        android:screenSize="xlarge" />
</compatible-screens>

或者这个:

<supports-screens
        android:anyDensity="true"
        android:xlargeScreens="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true" />

我只想让我的应用程序显示在每个屏幕上。那么,我应该使用哪一个?无论如何有什么区别?

0 个答案:

没有答案