这是我要添加弹出消息的方法。如果结果集包含“404”,我想显示一条消息。我不能在这里使用 Toast,因为它没有写在任何活动上下文中。
protected void onPostExecute(String result) {
// To make a popup notification when it is a Not Found Location
if(result.contains("404")){
return;
}
super.onPostExecute(result);
if (baseFragment != null) {
if (isMainTask) {
baseFragment.onTaskFinished(result);
} else {
baseFragment.onSubTaskFinished(result);
}
}
}