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

后端 未结 19 1811
闹比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:43

    for hiding 3 dots in actionbar/ toolbar
    
     public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.activity_dash_board_drawer, menu);
            return false;  //for visible 3 dots change to true, hiding false
        }
    

提交回复
热议问题