1
我在Android Studio中啓動了默認的導航抽屜項目。 之後,我添加了第二個活動。但是,在第二個活動的佈局中,狀態欄是白色的,但它具有相同的主題,如自動創建的佈局,其中colorPrimaryDark
屬性正常工作。狀態欄顏色不變
我打了一下週圍,並想出了一個新創建的主題CustomTheme
這得到了相同的項目,如AppTheme
的偉大工程。
所以使用android:theme="@style/CustomTheme.NoActionBar"
的作品,但android:theme="@style/AppTheme.NoActionBar"
沒有。 更改默認應用程序主題不起作用。
這是我styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="colorPrimaryDark">#3fff04</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="CustomTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="CustomTheme.NoActionBar">
<item name="colorPrimaryDark">#ff0404</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
所以,你能不能解釋一下,也許我這個小東西?
非常感謝您的幫助!