gpt4 book ai didi

java - 无法隐藏标题栏

转载 作者:搜寻专家 更新时间:2023-11-01 08:33:47 25 4
gpt4 key购买 nike

我是 Android 开发的新手,我想在我的应用程序中隐藏标题栏。

我尽我所能隐藏该栏,但应用程序停止或没有任何更改。

我在虚拟设备上运行了演示。它是一部 5.4"FWVGA 手机。
我还尝试添加
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"
或者
android:theme="@android:style/Theme.NoTitleBar(.Fullscreen)"
但不幸的是,应用程序停止了。

请告诉我如何隐藏标题栏。
这是我的 java 代码、布局文件、AndroidManifest.xml 和 styles.xml。

package com.activitytest2;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.Toast;

public class FirstActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//1. getActionBar().hide();
//2. requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.first_layout);
Button button1 = (Button) findViewById(R.id.button_1);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(FirstActivity.this,"You clicked button 1",Toast.LENGTH_SHORT).show();
}
});
}

}

layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button 1"/>
</LinearLayout>

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.activitytest2">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".FirstActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>


styles.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>
</resources>

最佳答案

走简单的路。只需替换 getActionBar().hide();getSupportActionBar().hide();

希望此解决方案对您有所帮助。

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

关于java - 无法隐藏标题栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38346830/

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