3

範囲

RippleDrawable は内部にあるようですselectoritemできます。

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/pink_highlight">        
    <item
        android:id="@android:id/mask"
        android:drawable="@color/pink_highlight" />
    <item 
        android:drawable="@drawable/bg_selectable_item" />
</ripple>

+

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/pink_highlight_focus" android:state_focused="true" />
    <item android:drawable="@color/pink_highlight_press" android:state_pressed="true" />
    <item android:drawable="@color/pink_highlight_press" android:state_activated="true" />
    <item android:drawable="@color/pink_highlight_press" android:state_checked="true" />
    <item android:drawable="@android:color/transparent" />
</selector>

問題

セレクターのデフォルト状態の色を変更できませんDrawableCompat.setTintList

RippleDrawable bg = (RippleDrawable) 
ResourcesCompat.getDrawable(context.getResources(), R.drawable.bg_navigation_item, null);
StateListDrawable bgWrap = (StateListDrawable) DrawableCompat.wrap(bg.getDrawable(1));
DrawableCompat.setTintList(bgWrap, new ColorStateList(new int[][]{new int[]{}}, new int[]{Color.WHITE}));
//
someView.setBackground(bg);

デフォルトのセレクターの状態は変更されません。それ以外はすべて問題ありません。

解決

問題が発生した理由 - 着色がどのように機能するかについての誤解。-ColorStateList完全にロードする方が良い;

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/pink_highlight">
    <item>
        <shape
            android:shape="rectangle"
            android:tint="@color/selectable_transparent_item" />
    </item>
    <item
        android:id="@android:id/mask"
        android:drawable="@color/pink_highlight" />
</ripple>

+

LayerDrawable bg = (LayerDrawable) ResourcesCompat.getDrawable(context.getResources(), R.drawable.bg_selectable_item, null);
Drawable bgWrap = DrawableCompat.wrap(bg.getDrawable(0));
DrawableCompat.setTintList(bgWrap, context.getResources().getColorStateList(R.color.selectable_white_item));
someView.setBackground(bg);
4

2 に答える 2

2

試しましたsomeView.setBackground(bgWrap)か?色合いをbgWrapに設定しますが、古い背景ではなく、背景として設定する必要もあります。

編集:setTintListバグがありますか? 次のコードは、AppCompat を使用するすべての API >= 15 で機能します。

public static void tintWidget(View view, ColorStateList colorStateList) {
    final Drawable originalDrawable = view.getBackground();
    final Drawable wrappedDrawable = DrawableCompat.wrap(originalDrawable);
    DrawableCompat.setTintList(wrappedDrawable, colorStateList);
    view.setBackground(wrappedDrawable);
}
于 2015-07-02T18:53:18.530 に答える