我想创建没有操作栏的应用程序和AppTheme,我的意思是例如进度条应该看起来像android 5中的进度条。
答案 0 :(得分:0)
在style.xml中执行以下更改
styles.xml:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light" >
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
</style>