2011-11-02 11 views
8

Androidのアクションバーのタブをスタイリングのための決定的な答えが必要私のマニフェストで私は考えることができるすべてを試しましたが、私が望むスタイリングを得ることはできません。私は多くのスタイリングを達成しましたが、1つのことはまだ私を見逃しています...タブ。私はそれらを色づける方法を見つけることができません。は、私は心の中でこの2つの例で私のアプリを始めました

私があまりにも遠くなる前に、明らかに何かを見逃してしまったことを告げる前に、は、Android 3.1のタブの色を変更することも可能です...その場合は3.0も同じです。青い下線)?それは私が他のほとんどすべてを行うことができるようだ...

私は答えをいっぱい見てきました。これらの場所と、より多くの、多くの...

http://developer.android.com/guide/topics/ui/actionbar.html

http://android-developers.blogspot.com/2010/05/twitter-for-android-closer-look-at.html

http://developer.android.com/resources/samples/ActionBarCompat/index.html

http://android-developers.blogspot.com/2011/04/customizing-action-bar.html

Android 3.0 ActionBar, changing colors

Android action bar like twitter sample

を含みます

Android ActionBar tab style for Honeycomb

http://groups.google.com/group/android-developers/browse_thread/thread/983509d7261c54f4

他には何も、これはお探しの方のためのリンクのまともなリストされていない場合...

おかげ

答えて

0

私はあなたが罰金ブルーを変更することができるとは思いませんラインカラー。

+1

私は下線付きの他のアプリを見てきました。 3.1タブレットのYouTubeアプリは、たとえば赤色です。上記のリンクのいくつかは色付きのタブを持っていますが、動作させることはできません。私はそれが私のアンドロイド版か私の実装かどうかはわかりません。 – Metallicraft

+0

これを解決しましたか?別の色でも必要です... – Balkyto

2
<style name="MyTheme.Light" parent="@android:style/Theme.Holo.Light"> 
    <item name="android:windowActionBarOverlay">true</item> 
    <item name="android:actionBarTabStyle">@style/customActionBarTabStyle</item> 
    <item name="android:actionBarTabTextStyle">@style/customActionBarTabTextStyle</item> 
</style> 
    <style name="customActionBarTabTextStyle"> 
      <item name="android:textColor">@android:color/white</item> 
    </style> 
    <style name="customActionBarTabStyle"> 
      <item name="android:background">@drawable/actionbar_tab_bg</item> 
      <item name="android:paddingLeft">24dp</item> 
      <item name="android:paddingRight">24dp</item> 
    </style> 
+1

私はこれを見て、試しましたが、それができるのはタブ上のテキストの背後にバックグラウンドを置くことだけでした。サンプル内のactionbar_tab_bgとは何ですか? – Metallicraft

関連する問題