我想显示自定义子菜单项。菜单膨胀并创建菜单项。但是创建的子菜单android:actionLayout
是空的/空白的。
我正在使用 ActionBarSherlock 4.3。
我在这里想念什么?
这是我的 menu.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:icon="@drawable/action_bar_overflow_icon"
android:showAsAction="always">
<menu>
<item
android:id="@+id/menu_item_view_reserve"
android:actionLayout="@layout/item_edit_reserve"
/>
<item
android:id="@+id/menu_item_view_delete"
android:icon="@drawable/item_manage_icon_delete"
android:title="Delete"
/>
</menu>
</item>
</menu>
这是我的布局/item_edit_reserve.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/item_manage_icon_reserved"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:text="Reserve"/>
</RelativeLayout>
充气:
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.item_edit, menu);
}