Android Studio 選擇 Layout 不起作用 (Material.NoActionBar.Fullscreen)



我在安卓工作室中选择了Material.NoActionBar.Fullscreen,我喜欢这个设计,但如果我启动我的应用程序,它会有actionbar和明亮的背景。

在我选择Material.NoActionBar…设计后,我的style.xml看起来没有什么变化。

<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="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>

如何使用这种设计?

注:我的API是28,所以这不应该是的问题

对不起,将代码更改为:

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getSupportActionBar().hide();
setContentView(R.layout.activity_main);
}

相关内容

  • 没有找到相关文章

最新更新