//佈局中的代碼android
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="下載"//真正項目時建議將文本資源統必定義配置在res下的strings.xml中
android:onClick="begin"/>
</LinearLayout>ide
//Java類中的代碼佈局
public class ProgressBarDemo extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.progressbar);
}
public void begin(View v) {
//實例化進度條對話框(ProgressDialog)
final ProgressDialog pd = new ProgressDialog(this);
pd.setTitle("請稍等");
//設置對話進度條樣式爲水平
pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
//設置提示信息
pd.setMessage("正在玩命下載中......");
//設置對話進度條顯示在屏幕頂部(方便截圖)
pd.getWindow().setGravity(Gravity.TOP);
pd.setMax(100);
pd.show();//調用show方法顯示進度條對話框
//使用匿名內部類實現線程並啓動
new Thread(new Runnable() {
int initial = 0;//初始下載進度
@Override
public void run() {
while(initial<pd.getMax()){//設置循環條件
pd.setProgress(initial+=40);//設置每次完成40
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
pd.dismiss();//進度完成時對話框消失
}
}).start();
}
}this
//效果圖spa