我想在工具栏中显示溢出菜单(AppCompat-v7:22.1.1),下面是我的menu_main.xml。
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity">
<item
android:id="@+id/action_search"
android:title="@string/action_search"
android:icon="@mipmap/ic_menu_search"
android:orderInCategory="100"
android:actionViewClass="android.widget.SearchView"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/menu_group_chat"
android:title="@string/menu_group_chat"
android:icon="@mipmap/ic_menu_groupchat" />
<item
android:id="@+id/menu_add_friend"
android:title="@string/menu_add_friend"
android:icon="@mipmap/ic_menu_add_friend" />
运行我的应用程序后,菜单项的图标未显示,然后我尝试了这个solution,在我的Activty中添加覆盖方法onMenuOpened()(从AppCompatActivity扩展),
@Override
public boolean onMenuOpened(int featureId, Menu menu) {
if(menu!=null){
if(menu.getClass().getSimpleName().equals("MenuBuilder")){
try {
Method m = menu.getClass().getDeclaredMethod(
"setOptionalIconsVisible", Boolean.TYPE);
m.setAccessible(true);
m.invoke(menu, true);
} catch (Exception e) {
e.printStackTrace();
}
}
}
return super.onMenuOpened(featureId, menu);
}
但是在运行此演示后,我发现图标仍未显示。
从reported issue开始,我知道在22.x中不再调用AppCompatActivity.onMenuOpened,但是当我点击Genymotion中的硬件菜单键时,菜单出现在底部和图标,
关闭菜单后,我再次单击工具栏中的溢出按钮,菜单中显示这些图标,
这有多奇怪啊!为什么会这样?
答案 0 :(得分:25)
对于 AppCompactActivity ,您可以将此检查放在 onPrepareOptionsPanel ()上。
@Override
protected boolean onPrepareOptionsPanel(View view, Menu menu) {
if (menu != null) {
if (menu.getClass().getSimpleName().equals("MenuBuilder")) {
try {
Method m = menu.getClass().getDeclaredMethod(
"setOptionalIconsVisible", Boolean.TYPE);
m.setAccessible(true);
m.invoke(menu, true);
} catch (Exception e) {
Log.e(getClass().getSimpleName(), "onMenuOpened...unable to set icons for overflow menu", e);
}
}
}
return super.onPrepareOptionsPanel(view, menu);
}
答案 1 :(得分:1)
@SuppressLint("RestrictedApi")
public void initToolBar(){
MenuBuilder menuBuilder = (MenuBuilder) toolbar.getMenu();
menuBuilder.setOptionalIconsVisible(true);
}
我这样解决了。
答案 2 :(得分:1)
这对我有用
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.my_menu, menu);
//this section is the one that allows to visualize the icon
if(menu instanceof MenuBuilder){
MenuBuilder m = (MenuBuilder) menu;
//noinspection RestrictedApi
m.setOptionalIconsVisible(true);
}
return true;
}
答案 3 :(得分:0)
以下是AlécioCarvalho提供的优秀答案的修改。如果需要正确显示不在主应用程序操作栏中的图标,而是在每个单独片段中的自定义工具栏(我想要一个具有自己标题和自定义操作的单独工具栏),则需要进行此修改。每个片段的菜单,而不是简单地将新项目添加到整个AppCompatActivity的操作栏中。
对于上述情况,Fragment类如下:
public class MyFragment extends android.support.v4.app.Fragment {
...
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
//at first get the very toolbar
fragmentToolbar = (Toolbar) view.findViewById(R.id.fragment_toolbar);
fragmentToolbar.setTitle(R.string.title_string);
fragmentToolbar.showOverflowMenu();
//now ready to get the menu's method, which is responsible for icons, and change its properties
Menu menu=fragmentToolbar.getMenu();
Method menuMethod = null;
try {
menuMethod = menu.getClass().getDeclaredMethod("setOptionalIconsVisible", Boolean.TYPE);
menuMethod.setAccessible(true);
menuMethod.invoke(menu, true);
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
//now all the other stuff necessary for the toolbar operation
fragmentToolbar.inflateMenu(R.menu.my_fragment_menu);
fragmentToolbar.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem arg0) {
if(arg0.getItemId() == R.id.menu_item_1){
...
}
return false;
}
});
//and now the main stuff of onCreateView
View view = inflater.inflate(R.layout.my_fragment_layout, container, false);
return view;
}
}
然后my_fragment_layout.xml包含如下菜单
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:id="@+id/fragment_toolbar"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:elevation="4dp">
</android.support.v7.widget.Toolbar>
//...other items
</LinearLayout>
典型的菜单文件实现为res/menu/my_fragment_menu.xml
。
该片段在mainActivity的布局中添加为
<fragment android:id="@+id/my_fragment_id"
android:name="com.appspot.trendy.trendychart.MyFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>