我应该采取哪些步骤来实现它?
我已经创建了操作栏但我仍然坚持进一步的步骤
答案 0 :(得分:1)
您必须使用“自定义视图”:
actionbar.setCustomView(your_custom_view)
actionbar.setDisplayShowCustomEnabled(true);
教程:
http://javatechig.com/android/actionbar-with-custom-view-example-in-android
答案 1 :(得分:1)
尝试这样,
ActionBar actionBar = getSupportActionBar();
actionBar.setCustomView(R.layout.your_custom_actionbar_view);
actionBar.setIcon(null);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayHomeAsUpEnabled(false);
actionBar.setDisplayUseLogoEnabled(false);
actionBar.setHomeButtonEnabled(false);
它会帮助你