ProgressBar用法

Xml内容:
<ProgressBar android:id="@+id/progressBar1" style="?android:attr/progressBarStyleHorizontal" android:layout_height="wrap_content" android:layout_width="fill_parent"></ProgressBar>
<ProgressBar android:id="@+id/progressBar2" style="?android:attr/progressBarStyle" android:layout_width="wrap_content" android:layout_height="wrap_content"></ProgressBar>

进度条方法:
//设置当前进度条
((ProgressBar)findViewById(R.id.progressBar1)).setProgress(1)
//设置下一刻进度条
((ProgressBar)findViewById(R.id.progressBar1)).setSecondaryProgress(10)
//设置最大值
((ProgressBar)findViewById(R.id.progressBar1)).setMax(150)

你可能感兴趣的:(ProgressBar)