ProgressDialog进度对话框:
ProgressDialog 继承自AlertDialog,AlertDialog继承自Dialog
一、progressDialog的常用方法:
mpDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);//设置风格为圆形进度条
mpDialog.setTitle(“提示”);//设置标题
mpDialog.setIcon(R.drawable.icon);//设置图标
mpDialog.setMessage(“这是一个圆形进度条”);
mpDialog.setIndeterminate(false);//设置进度条是否为不明确:这个属性对于ProgressDailog默认的圆形进度条没有实际意义,默认下设置为true,它仅仅对带有ProgressBar的Dialog有作用。修改这个属性为false后可以实时更新进度条的进度。
mpDialog.setCancelable(true);//设置进度条是否可以按退回键取消 ;
mpDialog.setOnCancelListener:当前Dialog强制取消之后将会被执行,通常用来清理未完成的任务。
mpDialog.setButton:设置ProgressDialog 的一个Button(需要监听Button事件);
mpDialog.show:显示ProgressDialog。
mpDialog.cancel:删除progressdialog
mpDialog.dismiss: 删除progressdialog 作用和cancel相同
mpDialog.setProgress(intCounter);更新进度条,当然一般都需要Handler的结合来更新进度条
二、ProgressDialog的创建的方法:
例:①//new Dialog 直接创建
ProgressDialog pd = new ProgressDialog(this);
pd.show();
②//使用静态方式创建并显示,但是这种进度条只能是圆形条,可以设置title和Message提示内容
ProgressDialog pd1 = ProgressDialog.show(this, "提示", "正在登陆中");
③//使用静态方式创建并显示,这种进度条只能是圆形条,注意:这里最后一个参数boolean indeterminate设置是否是不明确的状态
ProgressDialog pd2 = ProgressDialog.show(this, "提示", "正在登陆中", false);
④// 使用静态方式创建并显示,这种进度条只能是圆形条,注意:这里最后一个参数boolean cancelable 设置是否进度条是可以取消的
ProgressDialog pd3 = ProgressDialog.show(this, "提示", "正在登陆中", false, true);
⑤// 使用静态方式创建并显示,但是这种进度条只能是圆形条,这里最后一个参数 DialogInterface.OnCancelListener(取消的监听)
private DialogInterface.OnCancelListener cancelListener;
cancelListener = new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialog) {
// TODO Auto-generated method stub
Toast.makeText(MainActivity.this, "进度条被取消", Toast.LENGTH_LONG).show();
}
};
ProgressDialog pd4 = ProgressDialog.show(this, "提示", "正在登陆中", true, true, cancelListener);
三、主要分为2种:
1.圆形进度条
2.水平进度条
1.圆形进度条:
final ProgressDialog pd5 = new ProgressDialog(this);
pd5.setProgressStyle(ProgressDialog.STYLE_SPINNER);// 设置进度条的形式为圆形转动的进度条
pd5.setCancelable(true);// 设置是否可以通过点击Back键取消
pd5.setCanceledOnTouchOutside(false);// 设置在点击Dialog外是否取消Dialog进度条
pd5.setIcon(R.mipmap.ic_launcher);//设置提示的title的图标,默认是没有的,如果没有设置title的话只设置Icon是不会显示图标的
pd5.setTitle("提示");
// dismiss监听
pd5.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
// TODO Auto-generated method stub
}
});
// 监听Key事件被传递给dialog
pd5.setOnKeyListener(new DialogInterface.OnKeyListener() {
@Override
public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
return false;
}
});
// 监听cancel事件
pd5.setOnCancelListener(new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialog) {
// TODO Auto-generated method stub
}
});
//设置可点击的按钮,最多有三个(默认情况下)
pd5.setButton(DialogInterface.BUTTON_POSITIVE, "确定",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
});
pd5.setButton(DialogInterface.BUTTON_NEGATIVE, "取消",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
});
pd5.setButton(DialogInterface.BUTTON_NEUTRAL, "中立",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
});
pd5.setMessage("这是一个圆形进度条");
pd5.show();
new Thread(new Runnable() {
@Override
public void run() {
try {
Thread.sleep(5000);
// cancel和dismiss方法本质都是一样的,都是从屏幕中删除Dialog,唯一的区别是
// 调用cancel方法会回调DialogInterface.OnCancelListener如果注册的话,dismiss方法不会回掉
pd5.cancel();
// dialog.dismiss();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}).start();
2.水平进度条:
final ProgressDialog pd6 = new ProgressDialog(this);
pd6.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);// 设置水平进度条
pd6.setCancelable(true);// 设置是否可以通过点击Back键取消
pd6.setCanceledOnTouchOutside(false);// 设置在点击Dialog外是否取消Dialog进度条
pd6.setIcon(R.mipmap.ic_launcher);// 设置提示的title的图标,默认是没有的
pd6.setTitle("提示");
pd6.setMax(100);
pd6.setButton(DialogInterface.BUTTON_POSITIVE, "确定",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
});
pd6.setButton(DialogInterface.BUTTON_NEGATIVE, "取消",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
});
pd6.setButton(DialogInterface.BUTTON_NEUTRAL, "中立",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
});
pd6.setMessage("这是一个水平进度条");
pd6.show();
new Thread(new Runnable() {
@Override
public void run() {
int i = 0;
while (i < 100) {
try {
Thread.sleep(200);
// 更新进度条的进度,可以在子线程中更新进度条进度
pd6.incrementProgressBy(1);
// dialog.incrementSecondaryProgressBy(10)//二级进度条更新方式
i++;
} catch (Exception e) {
}
}
// 在进度条走完时删除Dialog
pd6.dismiss();
}
}).start();
本人菜鸟一个,有什么不对的地方希望大家指出评论,大神勿喷,希望大家一起学习进步!