布局
水平布局
<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
android:max="100"
android:id="@+id/pbar"/>
圆圈布局
<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/pbar"/>
设置可见性和不可见
myprogressbar.setVisibility(View.VISIBLE);
myprogressbar.setVisibility(View.GONE);
水平布局下设置进度条位置
myprogressbar.setProgress(1+myprogressbar.getProgress());