一,普通圆形 ProgressBar

该类型进度条也就是一个表示运转的过程,例如发送短信,连接网络等等,表示一个过程正在执行中。一般只要在XML布局中定义就可以了。

android:id="@+id/progress_bar"

android:layout_width="match_parent"

android:layout_height="wrap_content"/>

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

825186cb7eb8

二,超大号圆形ProgressBar

此时,给设置一个style风格属性后,该ProgressBar就有了一个风格,这里大号ProgressBar的风格是:

android:id="@+id/progress_bar"

style="?android:attr/progressBarStyleLarge"

android:layout_width="match_parent"

android:layout_height="wrap_content"/>

825186cb7eb8

三,小号圆形ProgressBar

小号ProgressBar对应的风格是: style="?android:attr/progressBarStyleSmall"

825186cb7eb8

四,长形进度条

布局中的长形进度条:

android:id="@+id/progress_bar"

style="?android:attr/progressBarStyleHorizontal"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:max="100"/>

设置风格为长形 android:max="100"

最大进度值为100 android:progress="50"

初始化的进度值 android:secondaryProgress="70"

初始化的底层第二个进度值 android:layout_gravity="center_vertical"   垂直居中

825186cb7eb8

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐