Android使用Shape实现ProgressBar样式实例
更新时间:2017年04月20日 09:00:05 作者:AlvinL
本篇文章主要介绍了Android使用Shape实现ProgressBar样式实例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
使用Shape实现样式
使用Shape中的ring
实现,如下布局ring.xml
:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="ring" android:thickness="5dp" android:useLevel="false" > <gradient android:endColor="#888" android:startColor="#ccc" android:type="sweep" android:useLevel="false" /> </shape>
使用rotate使之旋转
如下progressbar.xml
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <rotate android:drawable="@drawable/ring" android:pivotX="50%" android:pivotY="50%" android:fromDegrees="0" android:toDegrees="1080"/> </item> </layer-list>
注意:其中fromDegrees与toDegrees之差要是360的倍数,不然中间会有转的时候会跳一下,另外,这个差越大就转得越快,具体效果大家可以自行试一下
使用
<ProgressBar style="?android:attr/progressBarStyleLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:indeterminateDrawable="@drawable/progressbar" <!-- 这里使用自定义的progressbar样式 --> />
更简单的方法
直接使用一个布局文件就可以实现:
<?xml version="1.0" encoding="utf-8"?> <rotate xmlns:android="http://schemas.android.com/apk/res/android" android:fromDegrees="0" android:pivotX="50%" android:pivotY="50%" android:toDegrees="1080" > <shape android:shape="ring" android:thickness="5dp" android:useLevel="false" > <gradient android:endColor="#888" android:startColor="#ccc" android:type="sweep" android:useLevel="false" /> </shape> </rotate>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Android数据持久化之ContentProvider机制详解
这篇文章主要介绍了Android数据持久化之ContentProvider机制,结合实例形式分析了ContentProvider机制的原理与相关使用技巧,需要的朋友可以参考下2017-05-05Android RecyclerView实现水平、垂直方向分割线
这篇文章主要为大家详细介绍了Android RecyclerView实现水平、垂直方向分割线,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-07-07
最新评论