我想显示带有日期字符串的Action Bar以及下一个和上一个按钮。

时间:2014-12-03 08:57:50

标签: android android-activity android-fragments android-actionbar

Action bar with date and buttons

我应该采取哪些步骤来实现它?

我已经创建了操作栏但我仍然坚持进一步的步骤

2 个答案:

答案 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);

它会帮助你