0
ProgressDialog progressDialog = new ProgressDialog(context);
progressDialog.setMessage("Waitting...");
progressDialog.show();
//sharing implementation
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
// what type of data needs to be send by sharing
sharingIntent.setType("text/plain");
// package names
PackageManager pm = context.getPackageManager();
// list package
List<ResolveInfo> activityList = pm.queryIntentActivities(sharingIntent, 0);
List<ResolveInfo> newActivityList = new ArrayList<>();

上記は私のコードです。問題は、ProgressDialog2 番目の遅延が表示されることです。誰でも理由を教えてもらえますか?

4

0 に答える 0