简体   繁体   English

android listview包含复选框setonItemclick不起作用

[英]android listview contains checkbox setonItemclick not working

when i click listview item which contains textview and checkbox, setOnItemClickListener not working当我点击listview包含项目textview和复选框, setOnItemClickListener不工作

this is my java code这是我的java代码

android listview contains checkbox setonItemclick not working android listview包含复选框setonItemclick不起作用

 etiket_list.setOnItemClickListener(new AdapterView.OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position,
                                    long id) {
                final Database dbD = new Database(context); // Db bağlantısı oluşturuyoruz. İlk seferde database oluşturulur.
                Tags = dbD.Etiketler();
                final int  temp_id = Integer.valueOf(Tags.get(db.Etiketler().size()-position-1).get("tag_id"));
                final int pozisyon=db.Etiketler().size()-position-1;
                if (syac % 2 == 0) {
                    val_tag=val_tag+Tags.get(pozisyon).get("tag")+" ";
                    tag.setText(val_tag);
                    syac++;
                } else {
                    String newTags = tag.getText().toString().replaceAll(Tags.get(pozisyon).get("tag"),"");
                    syac++;
                    tag.setText(newTags);
                }

            }
        });          

Here is my list item XML code:这是我的列表项 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusable="false"
    android:descendantFocusability="blocksDescendants"
    android:weightSum="1">

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.09"
        android:background="#f8f8f8"
        android:descendantFocusability="blocksDescendants"
        android:id="@+id/item_li_frame">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:text="list_item_etiket2"
            android:id="@+id/list_item_etiket2"
            android:layout_gravity="left|center_vertical"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="6dp"
            android:textColor="#4a4a4a"
            android:textStyle="bold"
            android:focusableInTouchMode="false"
            android:focusable="false"
            android:textSize="16dp" />

        <CheckBox
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/etiket_checkBox"
            android:layout_gravity="right|center_vertical"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:layout_marginRight="16dp" />
    </FrameLayout>
</LinearLayout>

Android listview contains checkbox setonItemclick not working Android listview包含复选框setonItemclick不起作用

You have placed a TextView and CheckBox in a FrameLayout so the checkBox lies above the textView and consumes the touch events.你已经把一个TextViewCheckBoxFrameLayout所以checkBox处于上述textView和消耗的触摸事件。 Place them in a different layout such as LinearLayout将它们放在不同的布局中,例如LinearLayout

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM