您需要从菜单中删除所有项目。
@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;
}
然后创建一个带有进度条的 xml 布局。在其中宽度 =“match_parent”。取消注释 actionBar.setCustomView 和此方法以使用您自己的自定义视图膨胀您的 actionBar。
试试这个,给我唱歌,它对你有用吗?