Android:即使我点击ListView的外部,也会调用setOnRefreshListener

时间:2016-07-12 13:41:21

标签: android listview swiperefreshlayout

我有这个布局基础:

<RelativeLayout
    android:id="@+id/list_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_list_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <FrameLayout
            android:id="@+id/list_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"              
            android:background="@color/background" />

    </android.support.v4.widget.SwipeRefreshLayout>

</RelativeLayout>

在创建片段期间,我添加了一个特定的列表:

 <ListView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/white"
    android:divider="@color/list_divider"
    android:dividerHeight="1px" />

因此,当我点击红色区域(列表视图外)时,会调用监听器:

mSwipeContainer.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
    @Override
    public void onRefresh() {
        ...
    }
});

enter image description here

那么,为什么要调用这个监听器,我可以避免这种行为吗?

1 个答案:

答案 0 :(得分:0)

<android.support.v4.widget.SwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/swipe_list_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

     <ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:divider="@color/list_divider"
android:dividerHeight="1px" />

</android.support.v4.widget.SwipeRefreshLayout>

<RelativeLayout
    android:id="@+id/list_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

        <FrameLayout
            android:id="@+id/list_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"              
            android:background="@color/background" />

</RelativeLayout>

使用它 你实现了刷卡以刷新整个片段,包括listView。