Android,无 AppCompat,全屏 - 最正确的风格?
Android, no AppCompat, full screen - the most correct style?
Android 应用程序,仅限 21 级以上。 不 使用 AppCompat。
完全没有栏的全屏应用程序。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.client.client">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Main"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我很困惑:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
与...
android:theme="@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen"
最好、最现代的选择是什么?
我不了解这些值与 Android 中类似值之间差异的完整历史:/
同样,不要 使用 AppCompat,如果这很重要的话。
这是我希望该应用在所有设备上的显示方式的屏幕截图:
what is the best and most modern choice?
minSdkVersion
为 21+,您可以使用基于 Theme.Material
的主题,例如 Theme.Material.Light.NoActionBar.Fullscreen
.
Android 应用程序,仅限 21 级以上。 不 使用 AppCompat。
完全没有栏的全屏应用程序。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.client.client">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Main"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我很困惑:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
与...
android:theme="@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen"
最好、最现代的选择是什么?
我不了解这些值与 Android 中类似值之间差异的完整历史:/
同样,不要 使用 AppCompat,如果这很重要的话。
这是我希望该应用在所有设备上的显示方式的屏幕截图:
what is the best and most modern choice?
minSdkVersion
为 21+,您可以使用基于 Theme.Material
的主题,例如 Theme.Material.Light.NoActionBar.Fullscreen
.