我在Android项目中收到以下Lint警告以获取以下代码的new Void[] {}
部分:
new AsyncTask<Void, Void, Exception>() {
@Override
protected void onPreExecute() {
showToast("Restarting NFC...");
}
@Override
protected Exception doInBackground(Void... params) {
try {
disableNfcForegroundDispatch();
Thread.sleep(1000L);
enableNfcForegroundDispatch();
return null;
}
catch (Exception e) {
return e;
}
}
@Override
protected void onPostExecute(Exception e) {
if (e == null) {
showToast("...NFC restarted.");
}
else {
Log.e(LOG_TAG, "Could not restart NFC!", e);
showToast("Could not restart NFC: " + e);
}
}
}.execute(new Void[] {});
我无法用new Void[] {}
替换有问题的null
,那么正确的解决方案是什么?
答案 0 :(得分:4)
将参数列表留空:
.execute();