android 菜单的详介
2013-10-06 14:11:33 来源:WEB开发网核心提示: android:text="男" android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="true"/> &
android:text="男"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"/>
<RadioButton
android:id="@+id/rbFeMale"
android:text="女"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RadioGroup>
7.6.ProgressBar控件
7.6.1.概述
进度条(ProgressBar)是UI中非常实用的控件,类名:ProgressBar,用于动态显示某个比较耗时操作的进度,可避免因操作时间长,使用户感觉程序失去了响应,从而提高用户的使用体验。如图-4所示:
图-4
说明:
图-4靠上部分显示了一个默认的进度条样式(不断转动的圆圈),该进度条没有进度,用于显示在无法确定进度的操作。
图-4下面显示了一个水平进度条,该进度条上面有一个TextView控件显示该进度条的进度值目前是22%
7.6.2.常用属性
XML属性
|
说明
|
max
|
设置进度条的最大值
|
progess
|
设置已完成的进度值
|
progressDrawable
|
设置进度条的轨道的绘制形式
|
progressBarStyle
|
设置进度条样式
|
progressBarSytleHorizontal
|
水平进度条样式
|
progressBarStyleLarge
|
大进度条样式
|
proressBarStyleSmall
|
小进度条样式
|
更多精彩
赞助商链接