如何使用RippleDrawable以编程方式设置按钮背景(API 21)

时间:2015-02-25 02:29:14

标签: android android-layout android-5.0-lollipop android-drawable

我已经Button了。在该课程中,我尝试以编程方式更改颜色。

RippleDrawable draw = (RippleDrawable) getContext().getApplicationContext()
    .getResources().getDrawable(R.drawable.raised_btn);
this.setBackground(draw);

到目前为止看起来很棒..

Default State

然后我按下按钮,它是最随机的颜色。我没有指定这些粉红色的颜色。如果我通过XML(android:background="@drawable/raised_btn")将此drawable设置为背景,那么我没有问题。我需要以编程方式设置它。

Pressed State


我的RippleDrawable - raised_btn.xml

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="?attr/colorControlHighlight">
    <inset xmlns:android="http://schemas.android.com/apk/res/android"
        android:insetLeft="@dimen/button_inset_horizontal_material"
        android:insetTop="@dimen/button_inset_vertical_material"
        android:insetRight="@dimen/button_inset_horizontal_material"
        android:insetBottom="@dimen/button_inset_vertical_material">
        <shape android:shape="rectangle">
            <corners android:radius="@dimen/control_corner_material" />
            <solid android:color="@color/tan"/>
            <padding android:left="@dimen/button_padding_horizontal_material"
                android:top="@dimen/button_padding_vertical_material"
                android:right="@dimen/button_padding_horizontal_material"
                android:bottom="@dimen/button_padding_vertical_material" />
        </shape>
    </inset>
</ripple>

如何以编程方式设置RippleDrawable背景时,如何获得正确的连锁效果?

1 个答案:

答案 0 :(得分:5)

Resources对象不了解活动主题。您需要从Context获取drawable或将Theme传递给Resources.getDrawable(int,Theme)才能解析主题属性。

Context ctx = getContext();

// The simplest use case:
RippleDrawable dr1 = (RippleDrawable) ctx.getDrawable(R.drawable.raised_btn);

// Also valid:
Resources res = ctx.getResources();
RippleDrawable dr2 =
    (RippleDrawable) res.getDrawable(R.drawable.raised_btn, ctx.getTheme());

// If you're using support lib:
Drawable dr3 = ContextCompat.getDrawable(ctx, R.drawable.raised_btn);

此外,没有理由在此处使用应用程序上下文。如果有的话,这会让你更有可能使用你用于解析属性的主题与用于夸大你传递绘图的任何视图的主题不匹配。