我正在尝试使用我自己的布局 ( R.layout.update_button
) 作为操作栏菜单项视图。
项目声明如下:
<item
android:id="@+id/menu_update"
android:checkable="true"
android:showAsAction="never"
android:title="Title"/>
使用以下代码onCreateOptionsMenu(Menu menu)
:
View updateView = ((LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE))
.inflate(R.layout.update_button, null);
update.setActionView(updateView);
问题是 tihi 仅在android:showAsAction
设置为时才有效always
。但是,当它设置为 时never
,我只看到菜单标题(“标题”)而没有我的任何自定义布局。
有没有办法在什么时候显示自定义布局showAsAction="never"
?