web-dev-qa-db-ja.com

ActionBarタブを変更すると、プログラムで色に下線が引かれます

私はアクションバーを作成しました

ActionBar actionbar = getActionBar()

アクションバーの背景は次のように変更されます

actionbar.setBackgroundDrawable(actionBarBackgroundImage);

次に、プログラムでアクションバーのタブの下線の色を変更する必要があります。アクションバーのタブの下線の色を変更する方法はありますか?

23
Karthick

あるいは、 Android Action Bar Style Generator を使用して、アクションバーとタブを簡単にテーマ設定できます。

10
Litrik De Roy

これがはるかに簡単な方法です。プログラマティックな変更を探していたのは知っていますが、これは本当に簡単です。

私はこれに何日も苦労していましたが、最終的に解決策を見つけました。 AppCompatを使用しています。テーマにcolorAccentを設定すると、ActionBarのハイライトの色が変わります。そのようです:

<item name="colorAccent">@color/highlightcolor</item>

ここにコンテキストがあります:

<style name="LightTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">@color/darkgrey</item>
    <item name="colorPrimaryDark">@color/black</item>
    <item name="colorAccent">@color/highlightcolor</item>
</style>

私が最初にこの答えを投稿した場所: Androidタブの下線の色は変わりません

9
Kenny Wyland

ActionBarSherlock を使用することをお勧めします。 「Style ActionBar」という名前のライブラリで利用可能なサンプルが1つあります。 (これは、ActionBarタブの下線の色を変更できる唯一の方法です)

actionBarをカスタマイズした場合、ActionBar Styleにこのスタイルを追加する必要があります

またはここにこれを行う方法があります

enter image description here

以下のようなスタイルを作成します(使用したくない場合はここでActionBarShareLockを使用し、すべてをサポートするにはAndroid-support-v4.jarを使用しますAndroid OSバージョン)

<style name="Theme.AndroidDevelopers" parent="Theme.Sherlock.Light">
        <item name="Android:actionBarTabStyle">@style/MyActionBarTabStyle</item>
        <item name="actionBarTabStyle">@style/MyActionBarTabStyle</item>
    </style>

    <!-- style for the tabs -->
    <style name="MyActionBarTabStyle" parent="Widget.Sherlock.Light.ActionBar.TabBar">
        <item name="Android:background">@drawable/actionbar_tab_bg</item>
        <item name="Android:paddingLeft">32dp</item>
        <item name="Android:paddingRight">32dp</item>

actionbar_tab_bg.xml

<item Android:state_focused="false" Android:state_selected="false" Android:state_pressed="false" Android:drawable="@drawable/ad_tab_unselected_holo" />
<item Android:state_focused="false" Android:state_selected="true"  Android:state_pressed="false" Android:drawable="@drawable/ad_tab_selected_holo" />
<item Android:state_selected="false" Android:state_pressed="true" Android:drawable="@drawable/ad_tab_selected_pressed_holo" />
<item Android:state_selected="true"  Android:state_pressed="true" Android:drawable="@drawable/ad_tab_selected_pressed_holo" />

Androidマニフェストファイルのアクティビティでこのスタイルを適用します

<activity
            Android:name="com.example.tabstyle.MainActivity"
            Android:label="@string/app_name"
            Android:theme="@style/Theme.AndroidDevelopers" >

詳細については、この answer およびこの article を確認してください。


編集済み:29-09-2015

ActionBarSherlockは推奨されないため、代わりにAndroid designサポートライブラリとAndroidアプリappcompat TOOLBAR(Action-Barは非推奨です。)およびTABSのライブラリ。

以下のようなTabLayoutを使用します

<Android.support.design.widget.TabLayout
            Android:id="@+id/tabs"
            Android:layout_width="match_parent"
            Android:layout_height="wrap_content"
            app:tabGravity="center"
            app:tabMode="scrollable"
            app:tabSelectedTextColor="@color/white"
            app:tabIndicatorColor="@color/colorPrimary"
            app:tabIndicatorHeight="2dip"
            app:tabTextAppearance="?android:attr/textAppearanceMedium"
            app:tabTextColor="@color/colorAccent" />

Androidタブ付きのデザインサポートライブラリのサンプル

6
Dhaval Parmar

this を参照してください。アクションバーのカスタマイズについては、

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!-- the theme applied to the application or activity -->
    <style name="CustomActivityTheme" parent="@Android:style/Theme.Holo">
        <item name="Android:actionBarStyle">@style/MyActionBar</item>
        <!-- other activity and action bar styles here -->
    </style>

    <!-- style for the action bar backgrounds -->
    <style name="MyActionBar" parent="@Android:style/Widget.Holo.ActionBar">
        <item name="Android:background">@drawable/ab_background</item>
        <item name="Android:backgroundStacked">@drawable/ab_background</item>
        <item name="Android:backgroundSplit">@drawable/ab_split_background</item>
    </style>
</resources>
4
Sino Raj

ここや他の場所に投稿された多くの提案を運が悪かった。しかし、(完璧ではないが)解決策をまとめることができたと思います。

TabWidgetはセレクターを使用しています。基本的に、タブの状態(選択、押下など)に応じて、異なる9パッチイメージが表示されます。最終的に、プログラムでセレクタを生成できることがわかりました。 http://Android-holo-colors.com/ (色:#727272、TabWidget:はい)から生成された9つのパッチから始めました。

最大の問題は色の設定でした。カラーフィルターの設定は何もしませんでした。そのため、ループ内で9つのパッチイメージの各ピクセルの色を変更することになりました。

...    
/**
 * <code>NinePatchDrawableUtility</code> utility class for manipulating nine patch resources.
 * 
 * @author amossman
 *
 */
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public class NinePatchDrawableUtility {

    // Matches the colors in the supported drawables
    private static final int TAB_UNDERLINE_HIGHLIGHT_COLOR = 1417247097;
    private static final int TAB_UNDERLINE_COLOR = -8882056;
    private static final int TAB_PRESSED_COLOR = -2122745479;

    private Resources resources;

    public NinePatchDrawableUtility(Resources resources) {
        this.resources = resources;
    }

    /**
     * Create a <code>StateListDrawable</code> that can be used as a background for the {@link Android.widget.TabWidget}</br></br>
     * 
     * <code>
     * FragmentTabHost tabHost = ...</br>
     * NinePatchUtility ninePatchUtility = new NinePatchUtility(getResources());</br>
     * TabWidget tabWidget =  tabHost.getTabWidget();</br>
     * for (int i = 0; i < tabWidget.getChildCount(); i++) {</br>
     * &nbsp;&nbsp;&nbsp;tabWidget.getChildAt(i).setBackground(ninePatchUtility.getTabStateListDrawable(titleColor));</br>
     * }
     * </code>
     * 
     * @param tintColor The color to tint the <code>StateListDrawable</code>
     * @return A new <code>StateListDrawable</code> that has been tinted to the given color
     */
    public StateListDrawable getTabStateListDrawable(int tintColor) {
        StateListDrawable states = new StateListDrawable();
        states.addState(new int[] {Android.R.attr.state_pressed},
            changeTabNinePatchColor(resources, R.drawable.cc_tab_selected_pressed_holo, tintColor));
        states.addState(new int[] {Android.R.attr.state_focused},
            changeTabNinePatchColor(resources, R.drawable.cc_tab_selected_focused_holo, tintColor));
        states.addState(new int[] {Android.R.attr.state_selected},
            changeTabNinePatchColor(resources, R.drawable.cc_tab_selected_holo, tintColor));
        states.addState(new int[] { },
            changeTabNinePatchColor(resources, R.drawable.cc_tab_unselected_holo, tintColor));
        return states;
    }

    /**
     * Change the color of the tab indicator.</br></br>
     * 
     * Supports only the following drawables:</br></br>
     * 
     * R.drawable.cc_tab_selected_pressed_holo</br>
     * R.drawable.cc_tab_selected_focused_holo</br>
     * R.drawable.cc_tab_selected_holo</br>
     * R.drawable.cc_tab_unselected_holo</br></br>
     * 
     * Note: This method is not efficient for large <code>Drawable</code> sizes.
     * 
     * @param resources Contains display metrics and image data
     * @param drawable The nine patch <code>Drawable</code> for the tab
     * @param tintColor The color to tint the <code>Drawable</code>
     * @return A new <code>NinePatchDrawable</code> tinted to the given color
     */
    public NinePatchDrawable changeTabNinePatchColor(Resources resources, int drawable, int tintColor) {

        int a = Color.alpha(tintColor);
        int r = Color.red(tintColor);
        int g = Color.green(tintColor);
        int b = Color.blue(tintColor);
        BitmapFactory.Options opt = new BitmapFactory.Options();
        opt.inMutable = true;
        Bitmap bitmap = BitmapFactory.decodeResource(resources, drawable, opt);
        for (int x = 0; x < bitmap.getWidth(); x++) {
            for (int y = 0; y < bitmap.getHeight(); y++) {
                int color = bitmap.getPixel(x, y);
                if (color == TAB_PRESSED_COLOR) {
                    bitmap.setPixel(x, y, Color.argb((int)(a * 0.5), r, g, b));
                } else if (color == TAB_UNDERLINE_HIGHLIGHT_COLOR) {
                    bitmap.setPixel(x, y, Color.argb((int)(a * 0.9), r, g, b));
                } else if (color == TAB_UNDERLINE_COLOR) {
                    bitmap.setPixel(x, y, tintColor);
                }
            }
        }
        return new NinePatchDrawable(resources, bitmap, bitmap.getNinePatchChunk(), new Rect(), null);
    }

}

使用例:

/**
 * Theme the tab widget with the defined background color and title color set
 * in the TabManager
 * @param tabWidget
 */
@SuppressWarnings("deprecation")
@SuppressLint("NewApi")
public void theme(TabWidget tabWidget) {
    ColorDrawable backgroundDrawable = new ColorDrawable(backgroundColor);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        tabWidget.setBackground(backgroundDrawable);
        tabWidget.setAlpha(0.95f);
    } else {
        backgroundDrawable.setAlpha(242);
        tabWidget.setBackgroundDrawable(backgroundDrawable);
    }
    NinePatchDrawableUtility ninePatchUtility = new NinePatchDrawableUtility(resources);
    for (int i = 0; i < tabWidget.getChildCount(); i++) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
            tabWidget.getChildAt(i).setBackground(ninePatchUtility.getTabStateListDrawable(titleColor));
        } else {
            tabWidget.getChildAt(i).setBackgroundDrawable(ninePatchUtility.getTabStateListDrawable(titleColor));
        }
        View tabView = tabWidget.getChildTabViewAt(i);
        tabView.setPadding(0, 0, 0, 0);
        TextView tv = (TextView) tabView.findViewById(Android.R.id.title);
        tv.setSingleLine(); // set the texts on the tabs to be single line
        tv.setTextColor(titleColor);
    }
}
2
user3474507

長い1日の検索後にタブハイライターの色を変更するためのソリューションがあります。2行のコードだけで、この作業が完璧になります。

values/styles.xmlに移動し、ActionBarテーマに以下のコードを追加します

<item name="colorAccent">@color/Tab_Highlighter</item>

colors.xmlでTab_Highlighterの色を指定します

<color name="Tab_Highlighter">#ffffff</color>
1
Arun

フォローしてみてください。

res/drawableにtabs_selector_green.xmlを書き込みます。

    <!-- Non focused states -->
<item Android:drawable="@Android:color/transparent" Android:state_focused="false" Android:state_pressed="false" Android:state_selected="false"/>
<item Android:drawable="@drawable/layer_bg_selected_tabs_green" Android:state_focused="false" Android:state_pressed="false" Android:state_selected="true"/>

<!-- Focused states -->
<item Android:drawable="@Android:color/transparent" Android:state_focused="true" Android:state_pressed="false" Android:state_selected="false"/>
<item Android:drawable="@drawable/layer_bg_selected_tabs_green" Android:state_focused="true" Android:state_pressed="false" Android:state_selected="true"/>

<!-- Pressed -->
<!-- Non focused states -->
<item Android:drawable="@Android:color/transparent" Android:state_focused="false" Android:state_pressed="true" Android:state_selected="false"/>
<item Android:drawable="@drawable/layer_bg_selected_tabs_green" Android:state_focused="false" Android:state_pressed="true" Android:state_selected="true"/>

<!-- Focused states -->
<item Android:drawable="@Android:color/transparent" Android:state_focused="true" Android:state_pressed="true" Android:state_selected="false"/>
<item Android:drawable="@drawable/layer_bg_selected_tabs_green" Android:state_focused="true" Android:state_pressed="true" Android:state_selected="true"/>

res/drawableフォルダーにlayer_bg_selected_tabs_green.xmlを書き込みます。

<item>
    <shape Android:shape="rectangle" >
        <solid Android:color="@color/tab_green" />

        <padding Android:bottom="5dp" />
    </shape>
</item>
<item>
    <shape Android:shape="rectangle" >
        <solid Android:color="#FFFFFF" />
    </shape>
</item>

およびJavaコードはこれを記述します。

private static final int[] TABS_BACKGROUND = {
        R.drawable.tabs_selector_orange, R.drawable.tabs_selector_green,
        R.drawable.tabs_selector_red, R.drawable.tabs_selector_blue,
        R.drawable.tabs_selector_yellow };
/*
BLA BLA BLA
*/
@Override
public void onTabSelected(Tab tab, FragmentTransaction ft) {
    // TODO Auto-generated method stub
    RelativeLayout tabLayout = (RelativeLayout) tab.getCustomView();
    tabLayout.setBackgroundResource(TABS_BACKGROUND[tab.getPosition()]);
    tab.setCustomView(tabLayout);
/* ... */
}
0
Ganpat Kaliya