可能重复:
在 Android 框架中显示 Toast 通知
我有一个活动,在 onResume 中有以下代码:
super.onResume();
Intent intent = new Intent(this, this.getClass());
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
nfcAdapter.enableForegroundDispatch(this, pendingIntent, null,null);
在 onNewIntent(Intent intent) 函数中,我有:
super.onNewIntent(intent);
setIntent(intent)
..
...
Toast.makeText....
但是 Toast 没有出现 - 有人有解决这个问题的方法吗?