android progressbar 自定义图片匀速旋转

项目中需要使用圆形进度条进行数据加载的显示,所以需要两个步骤

1:自定义progressbar滚动图片

2:匀速旋转图片


步骤一:自定义progressbar图片

  <ProgressBar
                android:id="@+id/head_progressBar"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:indeterminateBehavior="cycle"
                android:indeterminateDrawable="@drawable/default_ptr_rotate" 图片资源
                android:indeterminate="false" />

步骤2:匀速旋转图片pull_pro_anim.xml

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="500"
    android:fromDegrees="0"
    android:pivotX="50%"
    android:interpolator="@android:anim/linear_interpolator"
    android:pivotY="50%"
    android:repeatCount="-1"    
    android:repeatMode="restart"
    android:toDegrees="360" >
    
</rotate>
使用

progress.startAnimation(AnimationUtils.loadAnimation(getContext(),
R.anim.pull_pro_anim));






由于项目需要,顺便还实现了listview下拉刷新,上拉刷新功能 git地址:https://github.com/cml8655/petsworld.git 中PullFlushListView工程

写得不好,请指教!

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。