Android动作栏微调文本颜色

use*_*462 1 android actionbarsherlock android-actionbar

我正在使用ActionBarSherlock并想要更改操作栏nav微调器中文本的颜色.有人可以提供一个这样做的xml的例子吗?

谢谢

use*_*462 5

我最后使用了一个带有白色文本的文本视图的自定义微调器项目布局:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:gravity="center_vertical"
          android:paddingLeft="10dp"
          android:textSize="18sp"
          android:textColor="#FFFFFF" />
Run Code Online (Sandbox Code Playgroud)