SwipeRefreshLayout不显示任何刷新指示

时间:2014-05-14 17:57:41

标签: android xml view fragment swiperefreshlayout

我在活动中显示的片段中使用了SwipeRefreshLayout。刷卡确实会执行刷新,但是在我向下拉动之后会立即返回,并且没有不确定进度的指示(动画进度条)。它刚刚消失,但仍然在完成后调用onRefresh()。这是我的布局......

活动布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

    <ListView
            android:id="@+id/left_drawer"
            android:layout_width="@dimen/nav_drawer_width"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:choiceMode="singleChoice"
            android:dividerHeight="1px"
            android:background="@color/drawer_background_gray"
            android:clipToPadding="false"/>

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

片段布局:

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

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

        <ListView
                android:id="@android:id/list"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:clipToPadding="false"/>

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

    <TextView
            android:id="@android:id/empty"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="@dimen/empty_text_size"
            android:layout_gravity="center"
            android:gravity="center"
            android:paddingTop="5dp"
            android:paddingBottom="5dp"
            android:paddingLeft="15dp"
            android:paddingRight="15dp"
            android:textColor="@color/brand_green"/>

    <ProgressBar
            android:id="@android:id/progress"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:indeterminateOnly="true"
            android:visibility="gone"
            android:layout_gravity="center"/>

</FrameLayout>

初始化Fragment布局的代码:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_list, null);
        swipeLayout = (SwipeRefreshLayout) view.findViewById(R.id.swipe_container);
        swipeLayout.setOnRefreshListener(this);
        swipeLayout.setColorScheme(android.R.color.holo_blue_bright,
                android.R.color.holo_green_light,
                android.R.color.holo_orange_light,
                android.R.color.holo_red_light);
        return view;
}

在刷新时通常会有3到6秒的延迟,足以让他在观看日志时发现明显。它应该是可见的,当我使用现已弃用的ActionBar-PullToRefresh库时,它工作正常。我已尝试将SwipeRefreshLayout设置为Fragment布局的根视图,我尝试删除空文本和进度视图,但它仍然无效。

我的实际代码中还有一些其他步骤,我无法透露,因为它是为我的公司设计的应用程序。但它只是为许多不同的片段提供类似的基础来做类似的事情,它不应该影响任何功能。

4 个答案:

答案 0 :(得分:11)

我使用了下面这个方法,经过这么多次尝试后,它对我没有解决方法,甚至是片段:

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

    <ScrollView
      android:layout_width="match_parent"
      android:layout_height="match_parent">

      ** content **

    </ScrollView>

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

AppCompat Library:com.android.support:appcompat-v7:21.0.3

答案 1 :(得分:2)

我发现问题是我的应用程序在Android 4.4上使用半透明UI,填充设置在列表顶部和列表底部,以便它位于操作栏下方和导航栏上方。由于ListView成为SwipeRefreshLayout的子项,因此填充应设置为SwipeRefreshLayout,而不是{I},就像我在切换到使用ListView之前一样。< / p>

答案 2 :(得分:0)

//to enable 
swipeRefreshLayout.post(new Runnable() {
@Override public void run() {
    swipeRefreshLayout.setRefreshing(true);
}});


//to disable 
swipeRefreshLayout.post(new Runnable() {
@Override public void run() {
    swipeRefreshLayout.setRefreshing(true);
}});

//IF ABOVE CODE DOESN'T WORK
//you might have made SwipeRefreshLayout as a root layout and it can be the source of bug
//so put SwipeRefreshLayout inside any ViewGroup like RelativeLayout, LinearLayout

答案 3 :(得分:0)

将swipeLayout.setColorScheme()更改为.setColorSchemeResources(#Your Colors Ids)