Intentando agregar un menú a mi barra de herramientas, sin embargo, el código supuestamente requerido para hacerlo muestra errores: 
Aquí está mi otro código:
res/menu/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>Aquí está el diseño con la barra de herramientas a la que quiero agregar el menú:
res/layout/actividad_inicio.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>¿Alguna idea de cómo puedo agregar mi menú a la barra de herramientas?