试图抓住Android ListView项目的点击

时间:2015-03-02 11:17:14

标签: android listview android-listview android-ui android-event

我在SO中看到了这个问题的很多变化,但没有一个答案能解决我的问题所以我猜我的实现与其他部分有点不同。 (我把所有建议都放在了

android:descendantFocusability="blocksDescendants" 

等)。 我正在尝试侦听listView项的click事件。我设法听了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>

listItem定义:

<?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>

在我的活动中设置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被点击 - 我没有看到预期的日志消息。 有谁知道为什么? ) - :

3 个答案:

答案 0 :(得分:1)

更改您的列表视图项目布局/视图,如下所示,您已完成。

<?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

您也可以在listview上设置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;
        }
    }); 

你只需返回true而不是false。

答案 1 :(得分:0)

由于我的代码不足,请尝试删除或添加以下代码

从listItem定义的根布局中删除:

android:clickable="true"

然后从代码中删除listView.setClickable(true);

现在,如果您想在同一longClick中使用ItemClicklistView,那么

Implement longClick listView

的听众 implement

中的

onClick Adapter听众

作为

row = inflater.inflate(R.layout.my_list_row, parent, false); 

    row.setOnclickListener(.....)

答案 2 :(得分:0)

        @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。