工具栏 SDK 29 中未显示的菜单项

我遇到的问题是菜单按钮未显示在工具栏中。我将一个按钮设置为始终显示,将一个按钮设置为仅在有空间时显示。没有显示。

这是使用 Android SDK 29 (Q) 编译的。

(我在 Stack Overflow 上搜索过类似的问题,但其他问题至少是几年前写的,并且使用的是较旧的 SDK。)

http://img2.mukewang.com/647c51b60001892604100345.jpg

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" />

    ...


忽然笑
浏览 91回答 1
1回答

慕少森

发现了问题。我需要在我的 MainActivity.java 中添加以下方法来扩充菜单项。@Override public boolean onCreateOptionsMenu(Menu menu) {&nbsp; &nbsp; MenuInflater inflater = getMenuInflater();&nbsp; &nbsp; inflater.inflate(R.menu.top_menu_overflow, menu);&nbsp; &nbsp; return true;&nbsp;}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java