gpt4 book ai didi

显示应用程序名称的 Android Studio 导航栏丢失了吗?

转载 作者:太空狗 更新时间:2023-10-29 16:00:05 27 4
gpt4 key购买 nike

当我在模拟器中启动应用程序时,我发现显示应用程序名称的导航栏丢失了。我可以知道发生了什么事吗?

public class MainActivity extends Activity implements OnClickListener {

EditText first_name;
EditText last_name;
Button button_submit;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
first_name = (EditText) findViewById(R.id.first_name);
last_name = (EditText) findViewById(R.id.last_name);
button_submit = (Button) findViewById(R.id.button_submit);
button_submit.setOnClickListener(this);

}
@Override
public void onClick(View v) {
Intent intent = new Intent(this, ViewActivity.class);
intent.putExtra("first_name", first_name.getText().toString());
intent.putExtra("last_name", last_name.getText().toString());
startActivity(intent);
}
}

list .xml

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

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

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

样式.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>

请引用屏幕截图以供引用。谢谢!

screenshot

最佳答案

可能你有

 android:theme="@style/AppTheme.NoActionBar" 

在您的 AndroidManifest.xml 中。如果是这样,您需要将其更改为

  android:theme="@style/AppTheme"

(假设您在 styles.xml 中定义了 AppTheme,父级 parent="Theme.AppCompat.Light.DarkActionBar" 或类似的)。

关于显示应用程序名称的 Android Studio 导航栏丢失了吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38370216/

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