在listview中为项目使用自定义布局时,事实证明OnItemClickListener不会触发。
以前,我使用的是android.R.layout.two_line_list_item。我所做的就是将这个已弃用的布局替换为我自己的自定义布局。
我试过了:
- 将选择模式设置为单个
- 在父列表和列表项中启用长短可点击性
- 启用焦点和后代可聚焦性
- 请求重点
非常感谢任何反馈!!!
谢谢!
答案 0 :(得分:0)
我猜您可以尝试在customlayout的xml文件中设置 android:clickable =“true”。但是布局文件的代码可能会更有帮助。
答案 1 :(得分:0)
这是自定义布局......
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false" >
<TextView
android:id="@+id/itemSummary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:textIsSelectable="true" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@id/itemSummary"
android:focusable="false"
android:focusableInTouchMode="false"
android:orientation="vertical" >
<TextView
android:id="@+id/item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textIsSelectable="true" />
<TextView
android:id="@+id/subItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/item"
android:focusable="false"
android:focusableInTouchMode="false"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textIsSelectable="true" />
</RelativeLayout>
</RelativeLayout>
答案 2 :(得分:0)
以下是一些视图项目创建代码...
adapter = new ArrayAdapter<ComplexObject>(this, R.layout.item_row, 0,
al) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = inflater.inflate(R.layout.item_row, parent,
false);
}
ComplexObject item = adapter.getItem(position);
((TextView) convertView.findViewById(R.id.item)).setText(item
.getShape());
((TextView) convertView.findViewById(R.id.subItem))
.setText(item.getWeight() + " lbs");
((TextView) convertView.findViewById(R.id.itemSummary))
.setText(item.getAge() + " years");
return convertView;
}
};