这是一个完整的答案,它建立在使用占位符的想法之上,但主要使用 xml 来添加子菜单。
如果你有一个名为 main_menu.xml 的菜单:
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:title="My Menu"
android:id="@+id/my_menu_item">
<!-- A empty SubMenu -->
<menu></menu>
</item>
</menu>
创建另一个将在 my_menu_item 中使用的菜单 sub_menu.xml:
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:title="SubMenu One"
android:id="@+id/submenu_one" />
<item android:title="SubMenu Two"
android:id="@+id/submenu_two" />
<item android:title="SubMenu Three"
android:id="@+id/submenu_three" />
</menu>
在您的 onCreateOptionsMenu 中:
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate your main_menu into the menu
getMenuInflater().inflate(R.menu.main_menu, menu);
// Find the menuItem to add your SubMenu
MenuItem myMenuItem = menu.findItem(R.id.my_menu_item);
// Inflating the sub_menu menu this way, will add its menu items
// to the empty SubMenu you created in the xml
getMenuInflater().inflate(R.menu.sub_menu, myMenuItem.getSubMenu());
}
这个解决方案很好,因为充气机可以处理大部分工作。