Android-自定义ProgressBar样式

圆型:
1:创建自定义样式文件/res/drawable/progressbar.xml
<?xml version="1.0"encoding="utf-8"?>
<rotatexmlns:android="http://schemas.android.com/apk/res/android"
 
    android:pivotX="50%" android:pivotY="50%"android:fromDegrees="0"
      android:toDegrees="360">
      <shape android:shape="ring"android:innerRadiusRatio="3"
            android:thicknessRatio="8"android:useLevel="false">
            <gradient android:type="sweep"android:useLevel="false"
                  android:startColor="#000000" android:centerColor="#FFFFFF"
                  android:centerY="0.50" android:endColor="#1E90FF"/>
      </shape>
</rotate>
2:布局文件/res/layout/test.xml中调用上面的自定义样式文件
<ProgressBar
            android:id="@+id/p_entry_progress"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            style="?android:attr/progressBarStyleLarge"
            android:indeterminateDrawable="@drawable/progressbar"
      />

----------------------------------------------------------------------------------------------

自定义水平/Horizontal ProgressBar


1、如何更改progressBar的样式

系统默认的水平/Horizontal ProgressBar的样式为:

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
          http://www.apache.org/licenses/LICENSE-2.0
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
 
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    
    <item android:id="@android:id/background">
        <shape>
            <corners android:radius="5dip" />
            <gradient
                    android:startColor="#ff9d9e9d"
                    android:centerColor="#ff5a5d5a"
                    android:centerY="0.75"
                    android:endColor="#ff747674"
                    android:angle="270"
            />
        </shape>
    </item>
    
    <item android:id="@android:id/secondaryProgress">
        <clip>
            <shape>
                <corners android:radius="5dip" />
                <gradient
                        android:startColor="#80ffd300"
                        android:centerColor="#80ffb600"
                        android:centerY="0.75"
                        android:endColor="#a0ffcb00"
                        android:angle="270"
                />
            </shape>
        </clip>
    </item>
    
    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <corners android:radius="5dip" />
                <gradient
                        android:startColor="#ffffd300"
                        android:centerColor="#ffffb600"
                        android:centerY="0.75"
                        android:endColor="#ffffcb00"
                        android:angle="270"
                />
            </shape>
        </clip>
    </item>
    
</layer-list>
 

贴上系统progressBar的图片:

progress_bar

id为background的item:系统画的是一个圆角为5dip的长条图,最底层的一个背景

id为secondaryProgress的item:系统画的是一个圆角为5dip的长条图,第二层的背景图,用了clip,可以根据进度来切。就像视频里已经下载完的那部分进度图。

id为progress的item:系统画的是一个圆角为5dip的长条图,最顶层的黄色的背景图,用了一个。可以根据设置的进度来切。就像视频里已经播放到的那部分进度图。

如果要自定义progressBar的样式,只需自定义系统的这个XML,然后:

Drawable progressbarDrawable=getResources().getDrawable(R.drawable.download_progressbar);

        singleProgressBar.setProgressDrawable(progressbarDrawable);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值