之前很多人都遇到过同样的问题,但我无法用他们的解决方案来解决这个问题。
我有一个自定义ArrayAdapter的ListActivity,但我似乎无法触发onItemClick。
我已尝试使用未触发的默认@Override protected void onListItemClick(...)
,以及myListView.setOnItemClickListener(new OnItemClickListener(){ ... });
,但也无效。
从以前的stackoverflow问题开始,我在xml中使用了以下代码:
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"`
在list_item.xml视图中
ListView本身中的android:descendantFocusability="afterDescendants"
。
以下是有关此问题的代码的主要部分:
ChecklistActivity.java:
public class ChecklistActivity extends ListActivity
{
private List<Product> products;
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_checklist);
// test products:
products = new ArrayList<Product>();
for(int i = 0; i < 5; i++){
Product p = new Product();
p.setName("Product " + i);
products.add(p);
}
MyAdapter adapt = new MyAdapter(this, R.layout.list_inner_view, products);
setListAdapter(adapt);
ListView lv = (ListView) findViewById(android.R.id.list);
lv.setOnItemClickListener(new OnItemClickListener(){
@Override
public void onItemClick(AdapterView<?> adapt, View v, int position, long id){
onListItemClick(v);
}
});
...
}
private void onListItemClick(View v){
Log.i("CHECKLIST ACTIVITY", "onListItemClick triggered");
...
}
list_item.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_gravity="center_vertical"
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:contentDescription="@string/checkbox_content_description"
android:src="@drawable/checkbox_unchecked"
android:background="@drawable/transparent_background"
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false" />
<TextView
android:id="@+id/tv_product_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
android:textIsSelectable="false" />
</LinearLayout>
activity_list.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="afterDescendants" />
</RelativeLayout>
答案 0 :(得分:0)
好的,我非常愚蠢..我删除了
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
来自list_item.xml的LinearLayout,现在它可以工作..