You need to remove all items from your menu.
@Override public boolean onCreateOptionsMenu(Menu menu) { MenuInflater inflater = getMenuInflater(); //inflater.inflate(R.menu.main, menu); ActionBar actionBar = getActionBar(); actionBar.setDisplayHomeAsUpEnabled(false); actionBar.setDisplayShowHomeEnabled(false); actionBar.setDisplayShowCustomEnabled(false); actionBar.setDisplayShowTitleEnabled(false); //actionBar.setIcon(R.drawable.ic_launcher); LayoutInflater inflator = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE); View view = inflator.inflate(R.layout.actionbar_main, null); //actionBar.setCustomView(view); return true; }
Then after that create an xml layout with a progress bar. It has width = "match_parent". Uncomment the actionBar.setCustomView and this method to inflate your actionBar with your own custom view.
Try and let me sing, this will work for you.
Mateusz zając
source share