我在扫描 NFC 标签时使用 onNewIntent。我想在扫描标签时显示 ProgressDialog。我尝试使用线程,但它使我的应用程序崩溃。有什么方法可以在 onNewIntent 启动时显示 progressDialog 吗?
public void onNewIntent(Intent intent) {
setIntent(intent);
Thread scanning = new Thread(new Runnable() {
public void run() {
ScanDialog = ProgressDialog.show(BorrowActivity.this,
"Scanning...", "scanning");
}
});
scanning.start();
.
. //next code doing something
.
}