10

我正在开发一些 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”来在操作栏上显示这些项目。此外,我还有 3 个用于导航的选项卡。But there is the following task: remove (or set visibility as false) this items from Action bar when tab with 0 positions is selected. 但我不明白我该怎么做:

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

2 回答 2

28

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

@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

于 2012-10-15T11:50:00.787 回答
1

一个非常小的解决方案:

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);
        }
}
于 2017-01-01T16:45:04.113 回答