尝试向ToolBar添加菜单

时间:2017-04-29 22:32:52

标签: java android

尝试在我的工具栏中添加一个菜单,但据说这样做的代码显示错误:enter image description here

这是我的其他代码:

RES /菜单/ home_menu.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/settings"
        android:title="@string/settings" />
    <item
        android:id="@+id/dark_theme"
        android:title="@string/dark_theme" />

</menu>

这是使用工具栏的布局我想将菜单添加到:

RES /布局/ activity_home.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">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/colorVeryDark"
        android:elevation="4dp"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar" />

</LinearLayout>

知道如何将菜单添加到工具栏中吗?

0 个答案:

没有答案