如何创建带有 AppTheme 而没有操作栏的应用程序?
How to create application with AppTheme and without action bar ?
我想创建没有操作栏和 AppTheme 的应用程序,我的意思是例如进度条应该看起来像 android 5 中的进度条。
在 style.xml
中进行以下更改
styles.xml:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light" >
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
</style>
我想创建没有操作栏和 AppTheme 的应用程序,我的意思是例如进度条应该看起来像 android 5 中的进度条。
在 style.xml
中进行以下更改styles.xml:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light" >
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
</style>