码迷,mamicode.com
首页 > 其他好文 > 详细

progerssbar-style 属性分析

时间:2015-04-23 12:37:36      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:

先看如下代码

 <ProgressBar
                android:id="@+id/progress_bar"
                style="@style/Voiceunlock.Theme.ProgressBar.Horizontal"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginEnd="30dip"
                android:layout_marginStart="30dip"
                android:max="100"
                />

style的代码如下

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background"
            android:drawable="@drawable/scrubber_bg_funui" />
    <item android:id="@android:id/secondaryProgress">
        <scale android:scaleWidth="100%"
               android:drawable="@drawable/scrubber_secondary_funui" />
    </item>
    <item android:id="@android:id/progress">
        <scale android:scaleWidth="100%"
               android:drawable="@drawable/scrubber_primary_funui" />
    </item>
</layer-list>

里面用到的颜色值如下

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <drawable name="scrubber_bg_funui">#000000</drawable>
    <drawable name="scrubber_secondary_funui">#ff0000</drawable>
    <drawable name="scrubber_primary_funui">#00ff00</drawable>
</resources>

运行结果如下

 

progerssbar-style 属性分析

标签:

原文地址:http://www.cnblogs.com/zhangshuli-1989/p/4449829.html

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