gpt4 book ai didi

android - 尝试隐藏标题栏时应用程序崩溃

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:16:02 26 4
gpt4 key购买 nike

为了制作全屏应用,我对新的“空白 Activity ”项目的 list 进行了以下更改:

  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

应用程序在任何设备上运行时都会崩溃。 StackOverflow 中的许多帖子都推荐了我所做的更改,但我无法弄清楚我做错了什么。

list 文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<activity
android:name="com.example.app.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

最佳答案

只需按照以下方式:

import android.support.v7.app.ActionBarActivity;

扩展:

    public class SplashScreen extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.splash_screen);
}
}

它适用于 API 级别 7 或更高级别。

编辑:

使用 AppCompatActivity 因为 ActionBarActivity @deprecated in API 23。

关于android - 尝试隐藏标题栏时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23293586/

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