我对这个奇怪的问题感到困惑。通常,在许多电话上,这不是问题。但是我尝试了三台MIUI10手机来解决此问题,而其他系统则没有遇到。也许这是MIUI10系统错误?
如果您有MIUI10手机,请帮助进行测试。
如何解决此问题以使其与许多设备兼容?欢迎所有帮助。
代码如下,非常简单:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:layout_marginBottom="50dp"
android:padding="15dp"
android:background="#1ad9ca"
android:textColor="#ffffff"
android:text="Hold to talk" />
</RelativeLayout>
findViewById(R.id.text).setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
switch (motionEvent.getAction()) {
case MotionEvent.ACTION_DOWN:
Log.d(TAG, "ACTION_DOWN");
break;
case MotionEvent.ACTION_MOVE:
Log.d(TAG, "ACTION_MOVE");
break;
case MotionEvent.ACTION_UP:
Log.d(TAG, "ACTION_UP");
break;
case MotionEvent.ACTION_CANCEL:
Log.d(TAG, "ACTION_CANCEL");
break;
}
return true;
}
});
在我的设备中,按住TextView几秒钟并举起我的手,调用ACTION_CANCEL,不调用 ACTION_UP 。这是日志:
D/MainActivity: ACTION_DOWN
D/MainActivity: ACTION_MOVE
D/MainActivity: ACTION_MOVE
D/MainActivity: ACTION_CANCEL
我想在ACTION_UP情况下做一些逻辑,而不是在ACTION_CANCEL情况下做
。测试设备信息:
Phone name: Xiaomi 8
Android system version: Android 9
MIUI system version: MIUI 10.1.2.0
答案 0 :(得分:0)
在我的miui手机上已验证,仅在10.2.x.x版本上会出现此问题,升级到10.3.3.0时,不会再出现此问题。
在调度ACTION_UP事件时,miui会拦截此事件并将动作从ACTION_UP更改为ACTION_CANCEL,但屏幕上没有任何弹出窗口,似乎是10.2.x.x上的错误。