如何將我的操作欄文本顏色從白色更改爲黑色?我不想使用行動條Sherlock。 如何更改操作欄文本顏色
這裏是我的代碼行動酒吧。
ActionBar ab = getActionBar();
ab.setDisplayUseLogoEnabled(false);
ab.setDisplayShowHomeEnabled(true);
ab.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
ab.setCustomView(R.layout.actionbar);
ab.setDisplayHomeAsUpEnabled(true);
ColorDrawable colorDrawable = new ColorDrawable(Color.parseColor("#33CCFF"));
ab.setBackgroundDrawable(colorDrawable);
這是自定義視圖操作欄:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/title"
android:textColor="#ffffff"
android:textSize="24sp" />
</LinearLayout>
這裏style.xml:
<resources>
<style name="AppBaseTheme" parent="@android:style/Theme.Holo.Light">
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
</style>
</resources>
我可以知道什麼是實現我目標的正確途徑也許這個問題太基本了,但我沒有找到任何合適的解決方案。請幫助我。
u需要更改短語「註冊」的顏色? – kathir
http://stackoverflow.com/questions/5861661/actionbar-text-color將幫助你 –
是@kathir。我該如何改變? –