发生这种情况是因为您在 styles.xml 中定义了一个主题,该主题具有以下内容:
<style name="AppTheme" parent="Theme.AppCompat.Light.**NoActionBar**">
您可以手动创建一个工具栏,然后您必须将其添加到您的活动中。
工具栏视图的 xml 可能类似于:
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
</androidx.appcompat.widget.Toolbar>
然后,在活动中,您必须“显示”它:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setDisplayShowTitleEnabled(false);
}
现在,您可以使用已知的 onCreateOptionsMenu 创建菜单