gpt4 book ai didi

android - MIUI10 android textview setOnTouchListener ACTION_UP 未调用

转载 作者:行者123 更新时间:2023-11-30 05:07:35 24 4
gpt4 key购买 nike

我对这个奇怪的问题感到困惑。通常,在许多电话上,这不是问题。但是这个问题我试了三台MIUI10手机,其他系统都没有遇到过。也许这是MIUI10的系统bug?

如果你有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

最佳答案

在我的miui手机上验证过,这个问题只出现在10.2.x.x版本上,升级到10.3.3.0后,这个问题就没有了。

在调度 ACTION_UP 事件时,miui 拦截了这个事件并将操作从 ACTION_UP 更改为 ACTION_CANCEL,但是屏幕上没有弹出窗口,似乎是 10.2.x.x 上的一个错误。

关于android - MIUI10 android textview setOnTouchListener ACTION_UP 未调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54284832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com