gpt4 book ai didi

android - 为什么 AppTheme.NoActionBar 不起作用?

转载 作者:IT王子 更新时间:2023-10-28 23:33:51 26 4
gpt4 key购买 nike

我在 Android Studio 中创建了一个 Android 应用,它默认创建了这些样式:

<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>

但是,在 Activity 中,我尝试将其设置为主题:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
android:theme="@style/AppTheme.NoActionBar">

但是当我运行应用程序时,我得到了操作栏:

enter image description here

为什么我会得到一个操作栏?我是在做明显错误的事情,还是 Google 为其自己平台的官方 IDE Android Studio 试图迷惑/误导其开发人员?

这是我的 Activity 代码,其中没有任何内容可以导致操作栏自行出现:

public class WelcomeActivity extends AppCompatActivity {
@Override
public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
super.onCreate(savedInstanceState, persistentState);
setContentView(R.layout.activity_welcome);
}
}

最佳答案

试试这样的:

<style name="AppTheme.NoActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>

并将其设置为 list 中 Activity 的主题,即:

<activity
...
android:theme="@style/AppTheme.NoActionBar">
</activity>

关于android - 为什么 AppTheme.NoActionBar 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36478925/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com