我的适配器设置如下:
userList = (ListView) activity.findViewById(R.id.userList);
userListAdapter = new UserListAdapter(this, R.layout.user_list, getUserList());
userList.setAdapter(userListAdapter);
function getUserList()返回ArrayList UserList
就像那样,列表显示没有问题。
但是当我这样做时:
userList.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Log.d("MyTag","kkkkkkkkkkkkkkkkk");
}
});
没有触发Log.d。 我在控制台中查看显示 D / AbsListView:onTouchUp()mTouchMode:1
我的Xmls activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/userList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="MainActivity"
tools:showIn="@layout/activity_main">
</ListView>
user_list.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="wrap_content"
android:padding="10dp"
android:weightSum="60"
android:orientation="horizontal">
<TextView
android:id="@+id/nom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="20"/>
<TextView
android:id="@+id/type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="20"/>
<Button
android:id="@+id/edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="10"
android:hint="Upd"/>
<Button
android:id="@+id/delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="10"
android:hint="Del"/>
</LinearLayout>
答案 0 :(得分:0)
在你的适配器中为一个处理点击事件创建一个接口,如下面的代码..
onItemClickListner onItemClickListner;
public void setOnItemClickListner(UserAdapter.onItemClickListner onItemClickListner) {
this.onItemClickListner = onItemClickListner;
}
public interface onItemClickListner{
public void onItemClick();
}
当用于点击事件的任何控件如孔布局点击事件时,在适配器中的代码下使用..在适配器中getView()方法
LinearLayout linearLayout=view.findViewById(R.id.linearLayout);
linearLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
onItemClickListner.onItemClick();
}
});
在列表视图中绑定适配器之后,在下面调用之后...
userListAdapter.setOnItemClickListner(new UserAdapter.onItemClickListner() {
@Override
public void onItemClick() {
Toast.makeText(getApplicationContext(),"Hello world",Toast.LENGTH_SHORT).show();
}
});