安卓打印加载等待对的实现

1、首先建立一个printerInterface

public class passwordInterface extends Activity {
private ProgressDialog processDialog;
private EditText et;
private TextView text;
public void showResult(final String message) {
passwordInterface.this.runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
// show
Builder builder = new Builder(passwordInterface.this);
TextView tv = new TextView(passwordInterface.this);
tv.setTextSize(20);
tv.setGravity(Gravity.CENTER_HORIZONTAL);
tv.setText(message);
builder.setView(tv);
builder.setPositiveButton("确定", null);
builder.create().show();
}
});
}
public void showResult(final String title, final String message) {
passwordInterface.this.runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
// show
Builder builder = new Builder(passwordInterface.this);
TextView tv = new TextView(passwordInterface.this);
tv.setTextSize(20);
tv.setGravity(Gravity.CENTER_HORIZONTAL);
tv.setText(message);
builder.setTitle(title);
builder.setView(tv);
builder.setPositiveButton("确定", null);
builder.create().show();
}
});
}
public void showWait(final String message) {
passwordInterface.this.runOnUiThread(new Runnable() {


@Override
public void run() {
processDialog = new ProgressDialog(passwordInterface.this);
processDialog.setMessage(message);
processDialog.setIndeterminate(true);
processDialog.setCancelable(false);
processDialog.show();
}
});
}
public void waitClose() {
passwordInterface.this.runOnUiThread(new Runnable() {
@Override
public void run() {
if (processDialog!=null&&processDialog.isShowing()) {
processDialog.dismiss();
}
}
});
}
}

2、在按钮的方法里面,执行完打印之后,添加以下代码

showWait("正在打印");
       Thread t = new Thread(run);
       t.start();

3、然后完成run方法的定义

//@洋葱  等待加载
 private Runnable run = new Runnable() {

@Override
public void run() {
// TODO Auto-generated method stub
try {
Thread.sleep(600);
waitClose();


} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
};

注意,run方法定义为私有,放在内部类里面,打印方法的外面。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

洋葱ycy

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值