使用appcompat v7自定义EditText样式

时间:2015-04-22 19:34:55

标签: android android-custom-view android-appcompat

我创建了一个扩展EditText的自定义视图,并指定了一个属性样式来更改背景色调。

public class CustomEditText extends EditText {

    public CustomEditText (Context context) {
        this(context, null);
    }

    public CustomEditText (Context context, AttributeSet attrs) {
        this(context, attrs, R.attr.customEditTextStyle);
    }

    public CustomEditText (Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs,  R.attr.customEditTextStyle);
    }
    // Some other code...
}

然后我添加了一个属性样式:

<resources>
    <attr name="customEditTextStyle" format="reference" />
<resources>

我在我的应用中使用Theme.AppCompat。我已经覆盖了colorPrimary,colorPrimaryDark和colorAccent。

<style name="AppTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">@color/blue</item>
    <item name="colorPrimaryDark">@color/blue_dark</item>
    <item name="colorAccent">@color/blue_accent</item>
    <item name="customEditTextStyle">@style/CustomEditText</item>
</style>
<style name="CustomEditText" parent="Widget.AppCompat.EditText">
    <item name="colorPrimary">@color/blue</item>
    <item name="colorPrimaryDark">@color/blue_dark</item>
    <item name="colorAccent">@color/blue_accent</item>
</style>

editText背景颜色工作正常,但是,我不能对自定义editText执行相同的操作。

我尝试过使用此代码,但它会更改整体状态,以便所有状态都使用相同的颜色。(https://stackoverflow.com/a/28433337

editText.getBackground().setColorFilter(getResources().getColor(R.color.your_color), PorterDuff.Mode.SRC_ATOP);

有没有办法在自定义视图中应用AppCompat样式?这个AppCompat问题还是我在CustomEditText中做错了什么?任何想法将不胜感激。谢谢!

2 个答案:

答案 0 :(得分:5)

从api 21开始,您必须继承AppCompatEdit文本的子类。所有受支持的小部件也是如此。使用AppCompat *获取着色和其他支持的功能。

答案 1 :(得分:0)

通过扩展android.support.v7.internal.widget.TintEditText来解决问题。

AppCompat不支持自定义视图的窗口小部件着色。