1
style.xml無法在主要活動顯示操作欄
在這裏,我故意禁止行動起來吧,因爲我不希望它出現我的啓動畫面上
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
MainActivity.java
後我想通過使用set supportactionbar在主要活動中存在操作欄,但在運行代碼後操作欄不起作用,並且整個過程沒有錯誤,有人能告訴我我的代碼出了什麼問題。
Toolbar tb;
tb = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(tb);