我知道这已经被问过,但不知何故,这些解决方案对我不起作用。
我有一个由gridView
夸大的relativeLayout
。适配器设置完美,当我向其中一个clickListener
的子项添加relativeLayout
时,它们也可以正常工作。但不是itemClickListener
上的gridview
。
以下是我的尝试:
的GridView:
<GridView
android:id="@+id/gridView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:clickable="true"
android:clipToPadding="true"
android:columnWidth="170dp"
android:fitsSystemWindows="true"
android:focusable="true"
android:numColumns="auto_fit"
android:stretchMode="columnWidth" >
</GridView>
gridview中添加了Relativelayout:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rlImage"
android:layout_width="220dp"
android:layout_height="180dp"
android:focusable="false"
android:focusableInTouchMode="false"
android:paddingBottom="7dp"
android:paddingRight="7dp" >
<ImageButton
android:id="@+id/image"
android:layout_width="220dp"
android:layout_height="220dp"
android:adjustViewBounds="true"
android:background="@null"
android:focusable="false"
android:focusableInTouchMode="false"
android:scaleType="centerCrop"
android:src="@drawable/noimage" />
<!-- <ImageButton -->
<!-- android:id="@+id/imageHover" -->
<!-- android:layout_width="220dp" -->
<!-- android:layout_height="220dp" -->
<!-- android:adjustViewBounds="true" -->
<!-- android:background="@null" -->
<!-- android:scaleType="fitXY" -->
<!-- android:src="@drawable/tile_selector_style" /> -->
<TextView
android:id="@+id/ShowTitle"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:hint="Show Title"
android:paddingBottom="40dp"
android:paddingRight="20dp"
android:singleLine="true" />
<TextView
android:id="@+id/ShowTime"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:hint="Show Time"
android:paddingBottom="20dp"
android:paddingRight="20dp"
android:singleLine="true" />
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_margin="0dp"
android:focusable="false"
android:focusableInTouchMode="false" />
</RelativeLayout>
gridview侦听器的设置:
gv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// TODO Auto-generated method stub
Log.v("griditem", "clicked");
Toast.makeText(context, "Here", Toast.LENGTH_LONG).show();
}
});
不知道这里出了什么问题..
答案 0 :(得分:15)
尝试将android:descendantFocusability="blocksDescendants"
设置为RelativeLayout
并从每个孩子中移除android:focusable="false" android:focusableInTouchMode="false"
答案 1 :(得分:14)
嘿伙计这就是我解决问题的方法;
在网格中使用可点击对象时,遗憾的是android无法处理网格的点击事件。
SO USE使用界面视图。
示例:使用IMAGEVIEW INSTEAD OF IMAGEBUTTON和BUTTON
如果您需要在该图像中显示一些文本,请使用textview并将其对齐在imageview之上。