整个对话框的 Android onTouchListener

标签 android dialog gesture gesturedetector onfling

我有一个对话框可以从中选择文件。此对话框包含用于显示目录和文件的 ListView ,并具有用于导航目的的 onItemClickListener。

我如何对目录结构中的fling事件作出 react ?我尝试在根 RelativeLayout 上设置一个 OnTouchListener 以将触摸事件分派(dispatch)到我的 GestureListener:

    final GestureDetector detector = new GestureDetector(new MyGestureDetector(tvCurrentPath));     
        dialog.findViewById(R.id.rlFilelist).setOnTouchListener(new OnTouchListener() {
            public boolean onTouch(View view, MotionEvent e) {
                detector.onTouchEvent(e);
                return false;
            }
        });

事件在 onTouch() 中注册,但 MyGestureDetector 中从未调用 onFling() 方法。但是,如果我将 OnTouchListener 附加到 ListView ,它将按预期工作。这种方法的问题是 ListView 并不总是充满大量数据,当它为空或单击下方项目时,不会触发 onTouch() 事件。

对话框布局:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rlFilelist"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:focusable="true" >    

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/llButtons" >

        <TextView
            android:id="@+id/tvCurrentPath"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dip"
            android:layout_marginRight="10dip" >
        </TextView>

        <ListView
            android:id="@+id/lvFileListing"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_above="@id/llButtons"
            android:layout_below="@id/tvCurrentPath" >
        </ListView>
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/llButtons"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="5dip"
        android:layout_marginTop="5dip" >

        <Button
            android:id="@+id/btAddDirectory"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_marginRight="10px"
            android:text="@string/host_tv_dg_add_directory" />

        <Button
            android:id="@+id/btUp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginRight="10px"
            android:layout_toRightOf="@id/btAddDirectory"
            android:text="@string/host_tv_dg_navigate_up" />

        <Button
            android:id="@+id/btClose"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@id/btUp"
            android:text="@string/_tv_close" />
    </RelativeLayout>

</RelativeLayout>

带有未完全填充的 lisview 的对话框的屏幕截图: http://imageshack.us/photo/my-images/802/dialog.png/

我怎样才能使 onFling() 事件在整个对话框或“整个” ListView 上触发,即使它没有完全充满项目?

谢谢!

最佳答案

您应该创建一个扩展对话框类的类,然后您可以创建一个手势检测器并附加到该类的 ontouchevent。 这是一个代码示例:

public class GestureDialog extends Dialog {
    public GestureDialog (Context context, int theme) {
        super(context, theme);

        gestDetec = new MyGestureDetector();    //inital setup
        gestureDetector = new GestureDetector(gestDetec);   
        gestureListener = new View.OnTouchListener() {
            public boolean onTouch(View v, MotionEvent event) {
                if (gestureDetector.onTouchEvent(event)) {
                    return true;
                }
                return false;
            }
        };
    }
    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (gestureDetector.onTouchEvent(event))
            return true;
        else
            return false;
    }
class MyGestureDetector extends SimpleOnGestureListener {
    @Override
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {

        System.out.println( "Help im being touched!" );
        return false;
    }
}

}

关于整个对话框的 Android onTouchListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7848269/

相关文章:

用于网络摄像头手势识别的 C# 或 JAVA 库?

java - 如何让 RecyclerView 处理 onclicklistener

android - 如何在 Android 中为深色和浅色模式放置启动画面?

java - 在 Android 中使用单个计时器与多个计时器来调度 TimerTasks

android - 将 Android 对话框锚定到 View

ios - 画线 objective-c

c# - 在 UWP 中使用滑动手势

javascript - 使用嵌入式 HTML 代码加载 WebView - Android

android - Kotlin - Android 中的自定义对话框

jquery - 如何使用jQuery调整自定义对话框的位置?