如何在操作栏中添加自定义后退按钮和分隔符

时间:2013-07-06 11:45:07

标签: android actionbarsherlock

这是我的操作栏看起来,我已经使用actionbarsherlock实现了这一点。如何自定义后退按钮和分隔符

enter image description here

2 个答案:

答案 0 :(得分:1)

您可以使用CustomViews自定义Actionbar。例如:

操作栏的布局:

<RelativeLayout
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">

     <TextView 
          android:id="@+id/tvTitle"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"/> 

</RelativeLayout>

然后您必须将此布局设置为自定义视图:

View actionbarView = getLayoutInflater().inflate(R.layout.actionbar, null);
getSupportActionBar().setCustomView(actionbarView);

我不建议您自定义后退按钮的外观,因为它是android中的标准。

答案 1 :(得分:0)

它实际上是一个“向上”按钮,可以通过覆盖主题中的此标记进行自定义:

<item name="android:homeAsUpIndicator">@drawable/ic_action_up</item>

其中ic_action_up是要使用的自定义Drawable。