Android自定义view实现进度条指示效果
短信预约 -IT技能 免费直播动态提醒
先看看效果图:
首先是布局文件
<FrameLayout
android:layout_width="match_parent"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_height="wrap_content">
<ProgressBar
android:id="@+id/pb_process"
style="@style/ProgressStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="false" />
<TextView
android:id="@+id/tv_progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="@color/white"/>
</FrameLayout>
添加style-ProgressStyle
<style name="TrainProgressStyle" parent="@android:style/Widget.ProgressBar.Horizontal">
<item name="android:progressDrawable">@drawable/my_progress</item>
</style>
添加drawable-my_progress
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="5dip" />
<gradient
android:angle="270"
android:centerY="0.75"
android:endColor="@color/gray_BB"
android:startColor="@color/gray_BB" />
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:angle="270"
android:centerColor="#f69200"
android:centerY="0.75"
android:endColor="#ff9800"
android:startColor="#ff9800" />
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<level-list>
<!-- 进度满时 level = 10000-->
<item
android:maxLevel="10000"
android:minLevel="10000">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:angle="270"
android:centerColor="#21a837"
android:centerY="0.75"
android:endColor="#22ac38"
android:startColor="#22ac38" />
</shape>
</clip>
</item>
<!-- 进度未满时 level < 10000-->
<item
android:minLevel="0"
android:maxLevel="9999"
>
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:angle="270"
android:centerColor="#f69200"
android:centerY="0.75"
android:endColor="#ff9800"
android:startColor="#ff9800" />
</shape>
</clip>
</item>
</level-list>
</item>
</layer-list>
activity里的使用和安卓默认的一样
pb_progress.setMax();
pb_progress.setProgress();
您可能感兴趣的文章:Android动态自定义圆形进度条Android编程之ProgressBar圆形进度条颜色设置方法Android带圆形数字进度的自定义进度条示例Android实现带数字的圆形进度条(自定义进度条)Android编程实现WebView添加进度条的方法Android自定义控件实现圆形进度条Android自定义Material进度条效果android自定义view制作圆形进度条效果Android编程基于自定义View实现绚丽的圆形进度条功能示例Android实现环形进度条的实例Android编程实现类似于圆形ProgressBar的进度条效果
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341