尝试点击 android ListView 项目
Trying to catch a click on android ListView item
我在 SO 中看到了这个问题的许多变体,但是 none 的答案解决了我的问题,所以我想我的实现与其他的有点不同。
(我把所有的推荐都放在
android:descendantFocusability="blocksDescendants"
等)
我正在尝试收听 listView 项目的点击事件。我设法听取了 longClick 事件,但我无法通过常规点击替换它。
这是我所做的,(我试图在这里只写下与问题相关的部分):
ListView 定义(另存为 my_list_row.xml):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="gm.activities.ViewAllActivity">
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello"/>
</LinearLayout>
列表项定义:
<?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="30dp"
android:orientation="horizontal"
android:descendantFocusability="blocksDescendants"
android:longClickable="true"
android:clickable="true">
<TextView
android:id="@+id/productNameText"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="fill_parent"
android:background="@color/unselected_row"
android:focusable="false"
android:longClickable="false"
android:clickable="false"
android:focusableInTouchMode="false"/>
<TextView
android:id="@+id/expiryDate"
android:layout_width="100dp"
android:layout_height="fill_parent"
android:background="@color/unselected_row"
android:focusable="false"
android:longClickable="false"
android:clickable="false"
android:focusableInTouchMode="false"/>
</LinearLayout>
在我的activity中设置ListView:
public class ViewAllActivity extends ActionBarActivity implements AdapterView.OnItemSelectedListener {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.view_all_activity);
...
ListView listView=(ListView)findViewById(R.id.list);
listView.setAdapter(new DataListAdapter(dataList));
listView.setClickable(true);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View row,
int pos, long id) {
Log.d("ViewAllActivity", "Item clicked pos: " + pos);
});
}
class DataListAdapter extends BaseAdapter {
private List<GuaranteeObj> GaList;
DataListAdapter(List<GuaranteeObj> gaList) {
GaList = gaList;
}
@Override
public int getCount() {
return GaList.size();
}
@Override
public Object getItem(int position) {
return GaList.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = getLayoutInflater();
View row;
row = inflater.inflate(R.layout.my_list_row, parent, false);
return row;
}
}
问题是我没有看到 ListItem 被点击 - 我没有看到预期的日志消息。
任何人都知道为什么? )-:
由于我理解你的代码,请尝试删除或添加以下代码
从 listItem 定义的根布局中删除:
android:clickable="true"
然后从代码中删除listView.setClickable(true);
现在如果你想在同一个 listView
中使用 longClick
或 ItemClick
那么
Implement
longClick
listView
和
的监听器
implement
onClick
Adapter
中的监听器
作为
row = inflater.inflate(R.layout.my_list_row, parent, false);
row.setOnclickListener(.....)
像下面这样更改您的列表视图项目layout/view,您就完成了。
<?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="30dp"
android:orientation="horizontal"
android:descendantFocusability="blocksDescendants">
<TextView
android:id="@+id/productNameText"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="fill_parent"
android:background="@color/unselected_row"
android:focusable="false"
android:focusableInTouchMode="false"/>
<TextView
android:id="@+id/expiryDate"
android:layout_width="100dp"
android:layout_height="fill_parent"
android:background="@color/unselected_row"
android:focusable="false"
android:focusableInTouchMode="false"/>
</LinearLayout>
查看更多信息My Answer
您也可以在列表视图上同时设置 onitemclicklistener 和 onlongitemclicklistner,如下所示:
lv.setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
int pos, long id) {
// TODO Auto-generated method stub
Log.v("long clicked","pos: " + pos);
return true;
}
});
你只需要 return true 而不是 false。
@Override
public void onItemClick(AdapterView<?> parent, View view,int position, long id) {
clickId = Integer.parseInt(userId.get(position));
Intent c = new Intent(Messages.this,New_message.class);
Bundle b = new Bundle();
b.putInt("Secondkey", clickId);
c.putExtras(b);
startActivity(c);
//userId是String ArrayList,必须先在里面加上自己的ID。
我在 SO 中看到了这个问题的许多变体,但是 none 的答案解决了我的问题,所以我想我的实现与其他的有点不同。 (我把所有的推荐都放在
android:descendantFocusability="blocksDescendants"
等)
我正在尝试收听 listView 项目的点击事件。我设法听取了 longClick 事件,但我无法通过常规点击替换它。
这是我所做的,(我试图在这里只写下与问题相关的部分):
ListView 定义(另存为 my_list_row.xml):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="gm.activities.ViewAllActivity">
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello"/>
</LinearLayout>
列表项定义:
<?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="30dp"
android:orientation="horizontal"
android:descendantFocusability="blocksDescendants"
android:longClickable="true"
android:clickable="true">
<TextView
android:id="@+id/productNameText"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="fill_parent"
android:background="@color/unselected_row"
android:focusable="false"
android:longClickable="false"
android:clickable="false"
android:focusableInTouchMode="false"/>
<TextView
android:id="@+id/expiryDate"
android:layout_width="100dp"
android:layout_height="fill_parent"
android:background="@color/unselected_row"
android:focusable="false"
android:longClickable="false"
android:clickable="false"
android:focusableInTouchMode="false"/>
</LinearLayout>
在我的activity中设置ListView:
public class ViewAllActivity extends ActionBarActivity implements AdapterView.OnItemSelectedListener {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.view_all_activity);
...
ListView listView=(ListView)findViewById(R.id.list);
listView.setAdapter(new DataListAdapter(dataList));
listView.setClickable(true);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View row,
int pos, long id) {
Log.d("ViewAllActivity", "Item clicked pos: " + pos);
});
}
class DataListAdapter extends BaseAdapter {
private List<GuaranteeObj> GaList;
DataListAdapter(List<GuaranteeObj> gaList) {
GaList = gaList;
}
@Override
public int getCount() {
return GaList.size();
}
@Override
public Object getItem(int position) {
return GaList.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = getLayoutInflater();
View row;
row = inflater.inflate(R.layout.my_list_row, parent, false);
return row;
}
}
问题是我没有看到 ListItem 被点击 - 我没有看到预期的日志消息。 任何人都知道为什么? )-:
由于我理解你的代码,请尝试删除或添加以下代码
从 listItem 定义的根布局中删除:
android:clickable="true"
然后从代码中删除listView.setClickable(true);
现在如果你想在同一个 listView
中使用 longClick
或 ItemClick
那么
Implement
longClick
listView
和
implement
onClick
Adapter
作为
row = inflater.inflate(R.layout.my_list_row, parent, false);
row.setOnclickListener(.....)
像下面这样更改您的列表视图项目layout/view,您就完成了。
<?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="30dp"
android:orientation="horizontal"
android:descendantFocusability="blocksDescendants">
<TextView
android:id="@+id/productNameText"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="fill_parent"
android:background="@color/unselected_row"
android:focusable="false"
android:focusableInTouchMode="false"/>
<TextView
android:id="@+id/expiryDate"
android:layout_width="100dp"
android:layout_height="fill_parent"
android:background="@color/unselected_row"
android:focusable="false"
android:focusableInTouchMode="false"/>
</LinearLayout>
查看更多信息My Answer
您也可以在列表视图上同时设置 onitemclicklistener 和 onlongitemclicklistner,如下所示:
lv.setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
int pos, long id) {
// TODO Auto-generated method stub
Log.v("long clicked","pos: " + pos);
return true;
}
});
你只需要 return true 而不是 false。
@Override
public void onItemClick(AdapterView<?> parent, View view,int position, long id) {
clickId = Integer.parseInt(userId.get(position));
Intent c = new Intent(Messages.this,New_message.class);
Bundle b = new Bundle();
b.putInt("Secondkey", clickId);
c.putExtras(b);
startActivity(c);
//userId是String ArrayList,必须先在里面加上自己的ID。