码迷,mamicode.com
首页 > 移动开发 > 详细

自定义Android进度条ProgressBar样式

时间:2015-04-02 19:02:56      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:android应用   进度条   

     进度条在Android应用中随处或见,都是为用户提供一个提示,用来增加用户的体验度!进度条样式多种多样,有圆形的,有条形的,有垂直方向的,也有水平方向的。Android系统也是我们提供了好几种默认的样式,今天我们来讲讲自定义样式的ProgressBar。

    下面用个很小(又是很小)的例子:

-------------------------xml布局--------------------------------------------

     <ProgressBar
            android:id="@+id/total_pb_avage"
            style="@android:style/Widget.ProgressBar.Horizontal"
            android:layout_width="match_parent"
            android:layout_height="3.5dp"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="15dp"
            android:layout_marginTop="4dp"

            android:max="100"

            android:progress="20"

            android:progressDrawable="@drawable/progress_bar_background" />

相关属性介绍:

style是指定进度条风格,系统提供的有以下几种:

style="@android:style/Widget.ProgressBar.Small" /**小型圆形进度条*/

style="@android:style/Widget.ProgressBar.Small.Inverse" /**小型圆形进度条*/

style="@android:style/Widget.ProgressBar.Inverse"  /**中型圆形进度条*/

style="@android:style/Widget.ProgressBar.Large"  /**大型圆形进度条*/

style="@android:style/Widget.ProgressBar.Large.Inverse" /**大型圆形进度条*/

style="@android:style/Widget.ProgressBar.Horizontal"  /**水平进度条*/

android:max=""用来指定进度条的最大值

 android:progress=""用来指定当前进度

android:progressDrawable=""就是今天的关键,用来指定图片样式,包括进行中的样式,我们自定义样式主要是在这个上面做文章:

----------------自定义样式在drawable文件下面progress_bar_background.xml------------------------

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:id="@android:id/background"><!-- 正常情况下的效果 -->
        <shape>
            <corners android:radius="2dip" />
<!-- 设置圆角半径 -->
            <gradient
<!-- 设置渐变效果 -->

                android:angle="270"
                android:centerColor="#e5e5e5"
                android:centerY="2.0"
                android:endColor="#e5e5e5"
                android:startColor="#e5e5e5" />
        </shape>
    </item>
    <item android:id="@android:id/progress"><!-- 时行中的效果 -->
        <clip>
            <shape>
                <corners android:radius="2dip" />
                <gradient
                    android:angle="270"
                    android:centerColor="#e12328"
                    android:centerY="2.0"
                    android:endColor="#e12328"
                    android:startColor="#e12328" />
            </shape>
        </clip>
    </item>
</layer-list>

--------------------代码中就很简单啦-------------------------

private ProgressBar mPbar;

mPbar=findViewById(R.id.total_pb_avage);

mPbar.setProgress(xxx);//xxx是你要显示的数值,数值部分就会显示红色的效果


自定义Android进度条ProgressBar样式

标签:android应用   进度条   

原文地址:http://blog.csdn.net/true100/article/details/44833563

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!