您好,登錄后才能下訂單哦!
進(jìn)度條對話框ProgressDialog經(jīng)常用于不能馬上完成的操作,為了避免用戶莫名其妙的等待,給用戶一個提示。
本例中我們演示了兩種進(jìn)度條:條形進(jìn)度條和圓形進(jìn)度條。
一、設(shè)計界面
1、打開“res/layout/activity_main.xml”文件。
從工具欄向activity拖出2個按鈕Button。
2、打開activity_main.xml文件。
代碼如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/progress" />
<Button
android:id="@+id/circle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/circle" />
</LinearLayout>
二、長按事件
打開“src/com.genwoxue.progress/MainActivity.java”文件。
然后輸入以下代碼:
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class MainActivity extends Activity {
//聲明按鈕
private Button btnCircle = null;
private Button btnProgress = null;
//聲明進(jìn)度條對話框
private ProgressDialog pdDialog = null;
//進(jìn)度計數(shù)
int iCount = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//獲取按鈕對象
btnCircle = (Button) findViewById(R.id.circle);
btnProgress = (Button) findViewById(R.id.progress);
//設(shè)置btnCircle的事件監(jiān)聽
btnCircle.setOnClickListener(new OnClickListener() {
@SuppressWarnings("deprecation")
@Override
public void onClick(View v) {
iCount = 0;
//創(chuàng)建ProgressDialog對象
pdDialog = new ProgressDialog(MainActivity.this);
//設(shè)置進(jìn)度條風(fēng)格,風(fēng)格為圓形,旋轉(zhuǎn)的
pdDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
//設(shè)置ProgressDialog標(biāo)題
pdDialog.setTitle("圓形進(jìn)度條");
//設(shè)置ProgressDialog提示信息
pdDialog.setMessage("正在下載中……");
//設(shè)置ProgressDialog標(biāo)題圖標(biāo)
pdDialog.setIcon(R.drawable.ic_launcher);
//設(shè)置ProgressDialog進(jìn)度條進(jìn)度
pdDialog.setProgress(100);
//設(shè)置ProgressDialog的進(jìn)度條是否不明確
pdDialog.setIndeterminate(false);
//設(shè)置ProgressDialog是否可以按退回按鍵取消
pdDialog.setCancelable(true);
//設(shè)置ProgressDialog的一個Button
pdDialog.setButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int i) {
//點擊“取消”按鈕取消對話框
dialog.cancel();
}
});
//讓ProgressDialog顯示
pdDialog.show();
//創(chuàng)建線程實例
new Thread(){
public void run(){
try{
while(iCount<=100){
//由線程來控制進(jìn)度
pdDialog.setProgress(iCount++);
Thread.sleep(50);
}
pdDialog.cancel();
}catch(InterruptedException e){
pdDialog.cancel();
}
}
}.start();
}
});
//設(shè)置btnProgress的事件監(jiān)聽
btnProgress.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
iCount = 0;
//創(chuàng)建ProgressDialog對象
pdDialog = new ProgressDialog(MainActivity.this);
//設(shè)置進(jìn)度條風(fēng)格,風(fēng)格為長形
pdDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
//設(shè)置ProgressDialog標(biāo)題
pdDialog.setTitle("條形進(jìn)度條");
//設(shè)置ProgressDialog提示信息
pdDialog.setMessage("正在下載中……");
//設(shè)置ProgressDialog標(biāo)題圖標(biāo)
pdDialog.setIcon(R.drawable.ic_launcher);
//設(shè)置ProgressDialog進(jìn)度條進(jìn)度
pdDialog.setProgress(100);
//設(shè)置ProgressDialog的進(jìn)度條是否不明確
pdDialog.setIndeterminate(false);
//設(shè)置ProgressDialog是否可以按退回按鍵取消
pdDialog.setCancelable(true);
//讓ProgressDialog顯示
pdDialog.show();
//創(chuàng)建線程實例
new Thread(){
public void run(){
try{
while(iCount<=100){
//由線程來控制進(jìn)度
pdDialog.setProgress(iCount++);
Thread.sleep(50);
}
pdDialog.cancel();
}catch(InterruptedException e){
pdDialog.cancel();
}
}
}.start();
}
});
}
}
三、運(yùn)行效果
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。