0

我在每个项目上都有一个android.widget.GallerywithImageView和一个。 用户可以标记要删除的图像。 Checkbox

当我有这个自定义时,我无法滚动/甩动View。一切都加载正常,并查看顶部的图像CheckBox

我知道触摸事件不会传播到我该Gallery
怎么做,我阅读了 20 篇关于此委托触摸的讨论,但没有任何效果。

这是我的xml:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent" 
                android:layout_height="fill_parent"
                android:clickable="false"
                android:focusable="false"
                >

    <ImageView android:id="@+id/thumbImage" 
               android:layout_width="wrap_content"
               android:layout_height="wrap_content" 
               android:layout_centerInParent="true" 
               android:clickable="false"
               android:focusable="false"
               />

    <CheckBox android:id="@+id/itemCheckBox" 
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_alignParentBottom="true"
              android:clickable="false"
              />
</RelativeLayout>
4

1 回答 1

0

如果有人对此有用,我只是自己想出来的。

里面getView()通过删除theimageview.setOnClickListener

于 2011-09-05T20:46:54.630 回答