我遇到的问题是菜单按钮未显示在工具栏中。我将一个按钮设置为始终显示,将一个按钮设置为仅在有空间时显示。没有显示。这是使用 Android SDK 29 (Q) 编译的。(我在 Stack Overflow 上搜索过类似的问题,但其他问题至少是几年前写的,并且使用的是较旧的 SDK。)activity_main.xml <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/tealBlue" tools:context=".view.MainActivity"> <androidx.appcompat.widget.Toolbar app:layout_constraintTop_toTopOf="parent" android:id="@+id/toolbar_top_main" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:minHeight="?attr/actionBarSize" android:theme="?attr/actionBarTheme" tools:menu="@menu/top_menu_overflow" /> <ExpandableListView android:id="@+id/expandableListViewPolls" android:layout_width="match_parent" android:layout_height="0dp" android:layout_marginTop="8dp" android:layout_marginBottom="8dp" android:indicatorLeft="? android:attr/expandableListPreferredItemIndicatorLeft" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toBottomOf="@+id/toolbar_top_main" tools:layout_editor_absoluteX="16dp" /> ...
1 回答
慕少森
TA贡献2019条经验 获得超9个赞
发现了问题。我需要在我的 MainActivity.java 中添加以下方法来扩充菜单项。
@Override public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.top_menu_overflow, menu);
return true;
}
添加回答
举报
0/150
提交
取消