-
Notifications
You must be signed in to change notification settings - Fork 396
按压变色
CoorChice edited this page Nov 1, 2019
·
2 revisions
SuperTextView 能够快速的支持按压变色效果,就像下图一样,文字和背景色都支持。
只需配置简单的属性:
# 设置按压时的背景色
app:stv_pressBgColor="@color/red"
# 设置按压时的文字颜色
app:stv_pressTextColor="@color/white"
在Java中:
// 设置按压背景变色
stv.setPressBgColor(Color.RED);
// 取消按压文字变色
stv.setPressTextColor(SuperTextView.NO_COLOR);
- 如果要取消按压背景变色,只需设置
PressBgColor
为透明色,SuperTextView.NO_COLOR
。 - 如果要取消按压文字变色,只需设置
PressTextColor
为SuperTextView.NO_COLOR
。