How to disable/hide three-dot indicator(Option menu indicator) on ICS handsets

后端 未结 19 1815
闹比i
闹比i 2020-12-04 19:29

How to disable/hide three-dot indicator(Option menu indicator) on ICS handsets which does\'t have menu button. ?

I am running application as

19条回答
  •  借酒劲吻你
    2020-12-04 19:56

    Following code worked for my app. Tried on Samsung Galaxy S4 (Android 4.3) and Nexus 4 (Android 4.2):

    @Override
    public boolean onPrepareOptionsMenu(Menu menu) {
        MenuItem item= menu.findItem(R.id.action_settings);
        item.setVisible(false);
        return true;
    }
    

提交回复
热议问题