刷卡刷新布局动画android

时间:2015-10-19 11:55:55

标签: android swiperefreshlayout

我正在使用eclipse进行android开发。我在我的应用中使用了swipeRefreshLayout。我的问题是,当我滑动环(圆圈动画)动画没有显示而不是线条水平类型正在显示但是我为刷卡固定的颜色工作正常而且我想在我滑动时需要一些距离和时间。请帮我如何在滑动时显示圆圈旋转动画。

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

                <android.support.v4.view.ViewPager
                    android:id="@+id/pager"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="8" />
            </android.support.v4.widget.SwipeRefreshLayout>

请参考下图

enter image description here

我想像这样展示

提前致谢

1 个答案:

答案 0 :(得分:1)

您的问题的答案是您无法使用支持库执行此操作。 Android将根据您的应用程序正在执行的操作系统版本来处理要显示的动画。

看看这个answer

  

SwipeRefreshLayout会为您显示其顶部的预定义动画

您可以尝试使用this这样的库,但我建议您坚持使用Google,并让动画自行处理。