如何在屏幕上延迟此消息

时间:2014-04-27 19:34:18

标签: android delay progressdialog

我需要在屏幕上显示此消息3秒钟,并且进程在后台运行非常重要。谢谢

@Override
    protected void onPreExecute() {
        pDialog = new ProgressDialog(getActivity());
        pDialog.setMessage(getText(R.string.wait));
        pDialog.setIndeterminate(true);
        pDialog.setCancelable(false);
        pDialog.show();
    }

0 个答案:

没有答案