我有一个对话框活动,想要从中移除操作栏,并且需要更改其操作栏的颜色>>
我试图改变主题和风格,但也没有任何改变。
<style name ="Dialog" parent="Theme.AppCompat.Dialog">
<item name="windowActionBar">false</item>
</style>
,另一种风格是
<style name ="coloredDialog" parent="Theme.AppCompat.Dialog">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
</style>
我也尝试过使用
getSupportActionBar()。隐藏()
但是他们的一些是错误然后应用程序突然关闭