自定义View-点击高亮TextView

效果图

在这里插入图片描述


  • 在values下创建attrs.xml

  • 自定义属性

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <declare-styleable name="MySelectorTextView">
        <attr name="pressColor" format="color" />
        <attr name="pressAlpha" format="float" />
    </declare-styleable>

</resources>
  • 自定义View
public class MySelectorTextView extends AppCompatTextView {

    public MySelectorTextView(Context context) {
        super(context);
    }

    public MySelectorTextView(Context context, AttributeSet attrs) {
        super(context, attrs, android.R.attr.textViewStyle);

        //当前设置字体颜色
        int currentTextColor = getCurrentTextColor();

        //转rgb值
        int red = Color.red(currentTextColor);
        int green = Color.green(currentTextColor);
        int blue = Color.blue(currentTextColor);

        //自定义属性
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.MySelectorTextView);
        //透明度
        float aFloat = typedArray.getFloat(R.styleable.MySelectorTextView_pressAlpha, 0.3f);
        //按压的颜色值
        int pressedColor = typedArray.getColor(R.styleable.MySelectorTextView_pressColor, Color.argb((int) (aFloat * 255), red, green, blue));

        typedArray.recycle();

        //设置点击效果
        int[][] stateList = new int[][]{
                new int[]{android.R.attr.state_pressed},
                new int[]{}
        };
        int[] stateColorList = new int[]{
                pressedColor,
                getCurrentTextColor(),
        };
        ColorStateList colorStateList = new ColorStateList(stateList, stateColorList);
        setTextColor(colorStateList);

        //设置可点击
        setClickable(true);
        setFocusable(true);
    }
}
  • 使用
<com.weiou.medical.view.MySelectorTextView
                android:id="@+id/tvCheck"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/string_read_agree" />
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值