ListVew SetOnItemClickListener不起作用

时间:2016-01-23 14:48:59

标签: android listview

我在popupView上有listview,其中包含一个TextView和ImageView,然后点击它会启动另一个带有另一个listview的popupView。在我的SGS4及更高版本的API上,所有工作都像魅力...在4.1.1 API 16上启动AVD以测试我的应用程序,只有应用程序上的问题是OnItemClick方法,它不起作用。

检查StackOverflow并尝试了所有XML属性:clickable,focusable,descendantFocusability ...在根视图,textViews,listView,所有选项都没有成功。

有任何提示可以尝试吗?

ListeView布局的XML:

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

    <LinearLayout
        android:id="@+id/headerLayout"
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:orientation="horizontal"
        android:layout_alignParentTop="true"
        android:gravity="center">

        <TextView
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Select your items in Group"
            android:textColor="@color/colorPrimaryDark"
            android:textStyle="bold"
            android:layout_margin="5dp" />
    </LinearLayout>

    <ListView
        android:id="@+id/lwMain"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="5dp"
        android:layout_below="@id/headerLayout"
        android:paddingBottom="50dp"
        android:layout_marginBottom="0dp"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="vertical"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="5dp">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="35dp"
            android:text="OK"
            android:id="@+id/BtnMain"
            android:background="@drawable/login_button"
            android:textColor="@color/colorPrimaryDark"

            android:layout_gravity="right" />
    </LinearLayout>

</RelativeLayout>

行布局的XML:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/title"
        android:textColor="@color/Gray" />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"
        android:layout_gravity="right"
        android:src="@drawable/abc_ic_go_search_api_mtrl_alpha" />


</LinearLayout>

编辑:

只是说我在其他活动上有另一个列表视图可以正常工作。像这里相同的代码。相同的itemclicklistener ..

1 个答案:

答案 0 :(得分:0)

我设法解决这个问题......

我有setFocusable(false)setTouchable(true),我删除了它们,它开始工作了。因为第一个listview只有没有checkoboxes的项目。第二个有相同的参数,但有复选框和第二个工作。 也许有人会有同样的问题。我的解决方案是这样。