-4
我有下面的代碼,不能檢查條件...我如何解決它?我的if語句不起作用。
@Override
protected void onPostExecute(Void result) {
if (null != pDialog && pDialog.isShowing()); {
pDialog.dismiss();
}
if (null == arrayList || arrayList.size() == 0) {
showToast("No data found from web!!!");
MainActivity.this.finish();
} else {
Collections.sort(arrayList);
setAdapterToListview(arrayList);
}
super.onPostExecute(result);
}
你是什麼意思沒有分號「不能檢查,如果條件」?怎麼了?任何錯誤? –
你是什麼意思,你不能檢查它? – robert
首先解決**編譯器錯誤**? –