Android之ProgressBar详解---自定义ProgressBar

前言:今天有时间复习一下进度条,顺便总结一下

一:为什么使用ProgressBar进度条的主要作用简言之就是避免应用在执行某个耗时操作时,让用户感觉程序失去了响应,从而更好的提高用户界面的友好性。

二:Android提供的ProgressBar种类及样式根据下面的xml文件所对应的顺序,Android支持的进度条style属性有

1.@android:style/Widget.ProgressBar  普通大小的环形进度条

2.@android:style/Widget.ProgressBar.Horizontal  水平进度条

3.@android:style/Widget.ProgressBar.Inverse  普通大小的环形进度条

4.@android:style/Widget.ProgressBar.Large  大环形进度条

5.@android:style/Widget.ProgressBar.Large.Inverse  大环形进度条

6.@android:style/Widget.ProgressBar.Small  小环形进度条

7.@android:style/Widget.ProgressBar.Small.Inverse  小环形进度条

代码如下:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    tools:context="com.example.androidbuttondemo.MainActivity" >

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <ProgressBar
                style="@android:style/Widget.ProgressBar"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp" />

            <ProgressBar
                style="@android:style/Widget.ProgressBar.Horizontal"
                android:backgroundTint="#ff0000"
                android:background="@drawable/ic_launcher"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp"
                android:progress="50" />

            <ProgressBar
                style="@android:style/Widget.ProgressBar.Inverse"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp" />

            <ProgressBar
                style="@android:style/Widget.ProgressBar.Large"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp"
                android:progress="100" />

            <ProgressBar
                style="@android:style/Widget.ProgressBar.Large.Inverse"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp" />

            <ProgressBar
                style="@android:style/Widget.ProgressBar.Small"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp" />

            <ProgressBar
                style="@android:style/Widget.ProgressBar.Small.Inverse"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp" />
        </LinearLayout>
    </ScrollView>

</LinearLayout>

显示的样式为:

             

注意:ProgressBar有一个属性      android:progress=""   ,在引号内可以设置默认显示的进度百分比,是一个0-100的值,水平进度条设置有效      android:progress="50"  ,显示效果如下:

           

而对环形进度条是无法显示进度的,它只是显示一个不停旋转的图片。   

三:动态的改变进度条进度           

在这里使用线程模拟了一个下载任务,使用进度条显示下载进度

public class ProgressBarMainActivity extends Activity {
 
ProgressBar shuipingPB;
 
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_progress_bar_main);
initView();
new Thread(new Runnable() {
@Override
public void run() {
for (int i = 1; i <= 100; i++) {
Message msg = new Message();
msg.what = 1100;
msg.obj = i;
handler.sendMessage(msg);
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}).start();
}
// Handler用于线程间通信
Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
if (msg.what == 1100) {
shuipingPB.setProgress(((int) msg.obj));
}
}
};
private void initView() {
shuipingPB = (ProgressBar) findViewById(R.id.shuipingPB);
}
}


 

                                                   

四:自定义ProgressBar

ProgressBar有两个进度,一个是android:progress,另一个是android:secondaryProgress。后者主要是为缓存需要所涉及的,比如在看网络视频时候都会有一个缓存的进度条以及还要一个播放的进度,在这里缓存的进度就可以是android:secondaryProgress,而播放进度就是android:progress,有了secondProgress,可以很方便定制ProgressBar。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值