gpt4 book ai didi

android - 在 ScrollView 的父级中未检测到水平滑动

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:52:55 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Gesture detection and ScrollView issue

编辑: 询问完整代码的问题 here .


我有一个带 child 的布局。我设置了一个手势监听器来检测布局上的水平滑动。当布局是 LinearLayout 时,滑动会被正确检测到,但当它是 ScrollView 时,则不会。我猜这个手势首先被 ScrollView 检测到并且没有传播到它的上级,但我不知道如何解决它。

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<ImageView android:layout_width="320dp" android:layout_height="30dp"
android:src="@drawable/header"/>
<ScrollView android:layout_width="fill_parent" android:layout_height="wrap_content">
<!-- stuff -->
</ScrollView>
</LinearLayout>

我为我的布局设置了以下监听器:

class ProductGestureListener extends SimpleOnGestureListener {

@Override
public boolean onDown(MotionEvent e) {
return true;
}

@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {

final int SWIPE_MIN_DISTANCE = 120;
final int SWIPE_MAX_OFF_PATH = 250;
final int SWIPE_THRESHOLD_VELOCITY = 200;

try {
if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH)
return false;
if(e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
// show previous item
} else if (e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
// show next item
}
} catch (Exception e) {
}
return false;
}
}

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