Android ProgressBar 各种样式大全

普通圆形ProgressBar


该类型进度条也就是一个表示运转的过程,例如发送短信,连接网络等等,表示一个过程正在执行中。
一般只要在XML布局中定义就可以了。
<progressBar Android:id="@+id/widget43"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"  
      android:layout_gravity="center_vertical">
</ProgressBar>

此时,没有设置它的风格,那么它就是圆形的,一直会旋转的进度条。



超大号圆形ProgressBar
此时,给设置一个style风格属性后,该ProgressBar就有了一个风格,这里大号ProgressBar的风格是:
完整XML定义是:
<progressBar android:id="@+id/widget196"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      style="?android:attr/progressBarStyleLarge">
</ProgressBar>

小号圆形ProgressBar
小号ProgressBar对应的风格是:
完整XML定义是:
<progressBar android:id="@+id/widget108"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      style="?android:attr/progressBarStyleSmall">
</ProgressBar>

标题型圆形ProgressBar
标题型ProgressBar对应的风格是:
完整XML定义是:
<progressBar android:id="@+id/widget110"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="?android:attr/progressBarStyleSmallTitle">
</ProgressBar>
代码中实现:
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
        //请求窗口特色风格,这里设置成不明确的进度风格
        setContentView(R.layout.second);
        setProgressBarIndeterminateVisibility(true);
        //设置标题栏中的不明确的进度条是否可以显示
    }

长形进度条


布局中的长形进度条


①首先在XML进行布局
<progressBar android:id="@+id/progressbar_updown"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_gravity="center_vertical"
        android:max="100"
        android:progress="50"
        android:secondaryProgress="70" >
讲解:
style="?android:attr/progressBarStyleHorizontal"  
设置风格为长形
android:max="100"  
最大进度值为100
android:progress="50"  
初始化的进度值
android:secondaryProgress="70"
初始化的底层第二个进度值
android:layout_gravity="center_vertical"  
垂直居中


②代码中运用 private ProgressBar myProgressBar;
//定义ProgressBar
myProgressBar = (ProgressBar) findViewById(R.id.progressbar_updown);
//ProgressBar通过ID来从XML中获取
myProgressBar.incrementProgressBy(5);
//ProgressBar进度值增加5
myProgressBar.incrementProgressBy(-5);
//ProgressBar进度值减少5
myProgressBar.incrementSecondaryProgressBy(5);
//ProgressBar背后的第二个进度条 进度值增加5
myProgressBar.incrementSecondaryProgressBy(-5);
//ProgressBar背后的第二个进度条 进度值减少5

页面标题中的长形进度条


代码实现:


内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwggzf.html