Hello I wanted to add custom ActionBar to my application in Android using this method:
LinearLayout ll_q = (LinearLayout) findViewById(R.id.qtitlebar);
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_USE_LOGO);
getSupportActionBar().setCustomView(R.layout.question_titlebar);
The result is:
How to get rid of the grey area in this ActionBar and the menu button?