Custom ListView (with CheckBox) not responding to clicks

旧时模样 提交于 2019-12-24 07:45:39

问题


I've created a custom ListView using my own version of ArrayAdapter. My problem is that it is not responding to any onItemClickListeners. Here are my code snippets:

final ArrayAdapter<Agency> aa=new myCustomAdapter();
    lv.setAdapter(aa);

    lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View myView, int pos,
                long id) {
            TextView clickedTV=(TextView)myView.findViewById(R.id.rowtext1);
            Toast.makeText(getBaseContext(), clickedTV.getText().toString(), Toast.LENGTH_LONG).show();


        }
    });

Adapter implementation:

private class myCustomAdapter extends ArrayAdapter<Agency> {

    public myCustomAdapter() {
        super(getBaseContext(), R.layout.layout_row, AgencyList);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View itemView=convertView;
        if (itemView==null)
            itemView=getLayoutInflater().inflate(R.layout.layout_row, parent, false);
        TextView rowText=(TextView)itemView.findViewById(R.id.rowtext1);
        Agency currentAgency=AgencyList.get(position);
        rowText.setText(currentAgency.getAgency().toString());
        return itemView;
    }   
}

I've created a custom xml layout for each row then inflated in my adapter. The custom row layout has TextView and a CheckBox:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/rowtext1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="23dp"
        android:layout_marginTop="21dp"
        android:text="Row Item"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <CheckBox
        android:id="@+id/rowcheckBox1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/rowtext1"
        android:layout_alignBottom="@+id/rowtext1"
        android:layout_alignParentRight="true"
        android:layout_marginRight="26dp"
        android:text="Select this" />

</RelativeLayout>

Can't I have a clickable row in a listView where there's already a clickable widget (like checkboxes)? I've seen this implementation in many phones (Sony's Timescape UI for example). Please suggest a work around! Thanks for your help!


回答1:


Must be sure whenever you performing with Custom ListView and onItemClick event not be triggered you have to set this properties for your custom layout UI elements. So set this for TextView and Checkbox

android:focusable="false"
android:focusableInTouchMode="false" 



回答2:


Set this in your Check-box of custom layout..

 android:focusable="false"
 android:focusableInTouchMode="false" 

So your full code will look something like this

 <CheckBox
    android:id="@+id/rowcheckBox1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/rowtext1"
    android:layout_alignBottom="@+id/rowtext1"
    android:layout_alignParentRight="true"
    android:layout_marginRight="26dp"
    android:focusable="false"
    android:focusableInTouchMode="false" 
    android:text="Select this" />

Looks like your check-box is causing this issue...



来源:https://stackoverflow.com/questions/22170924/custom-listview-with-checkbox-not-responding-to-clicks

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!