3

因此,我使用 android.support.v4.widget.SwipeRefreshLayout 在我的 GridView 上实现了 Pull-to-Refresh,它运行良好。但是当向下拖动手指时,只有动画播放并且“GridView-being-pulled-down-animation”不会像刷新时那样发生。GridView 在更新时保持不变。如何覆盖此动画方法并添加一个 GridView 运动,该运动清楚地显示 GridView 随着手指的运动被拉下的动画?(类似于facebook、instagram的刷新)

并且还可能在顶部显示一条消息,上面写着“正在刷新”

到目前为止我的代码。

XML:

<RelativeLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ECECEC"
    android:orientation="vertical" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_marginLeft="@dimen/feed_item_margin"
            android:layout_marginRight="@dimen/feed_item_margin"
            android:layout_marginTop="@dimen/feed_item_margin"
            android:orientation="vertical"
            android:paddingBottom="@dimen/feed_item_padding_top_bottom"
            android:paddingTop="@dimen/feed_item_padding_top_bottom" >

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

                <GridView
                    android:id="@+id/grid"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_alignParentBottom="true"
                    android:columnWidth="100dp"
                    android:gravity="center"
                    android:numColumns="1"
                    android:stretchMode="columnWidth"
                    android:verticalSpacing="10dp" />
            </android.support.v4.widget.SwipeRefreshLayout>
        </LinearLayout>
    </RelativeLayout>

代码:

swipeLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_container);
        swipeLayout.setOnRefreshListener(new OnRefreshListener() {

            @Override
            public void onRefresh() {
                //my update process
                RequestParams params = new RequestParams();
                params.put("req", "dataReqAndroid");
                invokeWS(params);
            }
        });
        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);
4

0 回答 0