如何以编程方式从菜单中删除MenuItems?

时间:2012-10-15 11:35:53

标签: java android

我正在开发一些Android应用程序,我有一些菜单代码:

<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:showAsAction="ifRoom"
        android:id="@+id/menuItemToLeft"
        android:icon="@drawable/to_left" />
    <item
        android:showAsAction="ifRoom"
        android:id="@+id/menuItemToRight"
        android:icon="@drawable/to_right"/>
</menu>

我使用“showAsAction”在Action Bar上显示这些项目。我还有3个导航标签。但是有以下任务:当选择具有0位置的选项卡时,从操作栏中删除(或将可见性设置为false)此项目。但我不明白我是怎么做到的:

public void onTabSelected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
    mViewPager.setCurrentItem(tab.getPosition());
    if (tab.getPosition()==0) {
    //some code
    }
}

2 个答案:

答案 0 :(得分:17)

尝试不使用以下方式显示它们:

@Override
public boolean onPrepareOptionsMenu(Menu menu) {
    super.onPrepareOptionsMenu(menu);
    menu.findItem(R.id.menuItemToLeft).setVisible(true);
    menu.findItem(R.id.menuItemToRight).setVisible(false);
    return true;
}
//true or false depending on your requirements

或删除:

menu.removeItem(x); //where x is the number of the menu item from 0,1,...

然后,您可能需要使用menu.Add()

再次创建MenuItem

答案 1 :(得分:0)

一个非常小的解决方案:

public class MainActivity extends AppCompatActivity
        implements NavigationView.OnNavigationItemSelectedListener {
Menu myMenu;


protected void onCreate(Bundle savedInstanceState) {
.....
}

   @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        myMenu = menu;
        return true;
    }

 @Override
    public boolean onNavigationItemSelected(MenuItem item) {

int id = item.getItemId();
if (id == R.id.feedsenglish)
        {
            myMenu.findItem(R.id.allfeeds).setVisible(false);
        }
}