我创建了简单的GridView Gallery。我展示了一些照片。现在我正试着穿上它们复选框。复选框在我的图像上可见,但现在单击操作不起作用(在onItemClick之前我缩放图片)。所以我的想法是,如果我点击照片除了复选框之外的地方就会缩放,但如果我点击复选框就会选中/取消选中。
我的xml文件:
{{#arraymap:{{{Author|}}}|,|x|[[Author::x]]}}
答案 0 :(得分:1)
将这些属性添加到xml CheckBox
android:clickable="false"
android:focusable="false"
答案 1 :(得分:0)
你可以试试这个
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageView"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_centerVertical="true"
android:layout_margin="5dp"
android:adjustViewBounds="true"/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"/>
</FrameLayout>