假设我有一个用于signUp按钮的类:
public class SignUp extends AppCompatButton {
public SignUp(Context context) {
this(context, null);
}
public SignUp(Context context, AttributeSet attrs) {
super(context, attrs, android.support.v7.appcompat.R.attr.buttonStyle);
setFocusable(true);
setFocusableInTouchMode(true);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
super.onTouchEvent(event);
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
requestFocus();
this.setBackgroundColor(getResources().getColor(R.color.darkGreen));
return true;
case MotionEvent.ACTION_UP:
this.setBackgroundColor(getResources().getColor(R.color.green));
performClick();
return true;
}
return false;
}
@Override
public boolean performClick() {
super.performClick();
return false;
//TODO
}
,我的应用程序中有一个名为signUp的按钮,并且已在XML文件中声明了这一点:
<com.example.John.myapplication.SignUp
android:layout_width="150dp"
android:layout_height="wrap_content"
android:text="@string/sign_up"
android:background="@color/green"
android:textColor="@color/whiteText"
app:layout_constraintTop_toBottomOf="@+id/verify_password"
android:layout_marginTop="40dp"
app:layout_constraintLeft_toRightOf="parent"
app:layout_constraintRight_toLeftOf="parent"
android:id="@+id/sign_up"
android:textSize="20sp"
/>
现在,如果用户触摸signUp按钮,则按钮的颜色将变为深绿色,而当他释放按钮时,按钮的颜色将再次变为绿色。但是我想添加此功能,以便当用户触摸按钮然后将手指从按钮中拖出时,按钮的颜色变为绿色,但是我不能。 MotionEvent.ACTION_OUTSIDE,MotionEvent.ACTION_CANCEL和...都不起作用。 我该怎么办?
我不想通过协调来检查手指是否在按钮之外,因为当按钮为椭圆形时,这是一项巨大的工作。
答案 0 :(得分:1)
只需使用selector
。
https://developer.android.com/guide/topics/resources/color-list-resource
示例
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true" android:color="@color/colorTextPrimaryDark" />
<item android:color="@color/colorAccent3" />
</selector>
答案 1 :(得分:0)
这里不需要侦听器(并且Action.DOWN不会拖动),请仔细阅读本节,如果需要更多指导,请告诉我-> https://developer.android.com/guide/topics/resources/color-list-resource
这-> http://www.zoftino.com/android-color-state-list-example->似乎是一个很好的例子。
答案 2 :(得分:0)
您可以使用最新支持库中引入的最新Material Button组件。默认情况下,按钮的背景色是您的主题强调色。
尝试
<android.support.design.button.MaterialButton
android:id="@+id/btn__next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
app:backgroundTint="@color/colorAccent" /* Change colour for background */
app:rippleColor="@color/colorAccent" /* Change colour for selecting button */
android:text="@string/next" />
答案 3 :(得分:0)
使用视图边界比较触摸事件边界,从而共享修改后的代码。
private Rect buttonBounds;
@Override
public boolean onTouchEvent(MotionEvent event) {
super.onTouchEvent(event);
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
buttonBounds = new Rect(getLeft(), getTop(), getRight(), getBottom());
requestFocus();
this.setBackgroundColor(getResources().getColor(R.color.darkGreen));
return true;
case MotionEvent.ACTION_UP:
this.setBackgroundColor(getResources().getColor(R.color.green));
performClick();
return true;
case MotionEvent.ACTION_MOVE:
if(!buttonBounds.contains(getLeft() + (int) event.getX(), getTop() + (int) event.getY())){
// User moved outside bounds
this.setBackgroundColor(getResources().getColor(R.color.green));
return true;
}
}
return false;
}