0
我正在android抽屜菜單中工作。在此我添加了自定義視圖到操作欄以顯示彈出菜單。它工作正常。當我關閉導航抽屜時,顯示自定義視圖。但我打開抽屜式導航欄我試圖隱藏定製view.Please幫我
代碼:如何隱藏當抽屜打開時的Actionbar自定義視圖
ActionBar actionBar = getSupportActionBar();
actionBar.setCustomView(R.layout.customaactionlayout);
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME
| ActionBar.DISPLAY_HOME_AS_UP | ActionBar.DISPLAY_SHOW_TITLE
| ActionBar.DISPLAY_USE_LOGO | ActionBar.DISPLAY_SHOW_CUSTOM);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.getCustomView().findViewById(R.id.custombutton);
customSettings=(Button) findViewById(R.id.custombutton);
customSettings.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
PopupMenu popup = new PopupMenu(NavigationActivity.this, customSettings);
//Inflating the Popup using xml file
popup.getMenuInflater().inflate(R.menu.main, popup.getMenu());
popup.show();
}
});