我正在使用 AsyncTask 的 onPostExecute 方法中的 RunOnUIThread Runnable 中的 setText 方法更新 textView。
我第一次运行活动时,textView 会更新。但是,当我转到另一个活动并返回上一个活动时,它不再更新 UI。
使用调试器,我可以看到 textView 的 mText 字段正在更新为新文本。但是,当我继续运行代码时,textView 将保留其默认文本。
我在这里错过了什么吗?我真的不明白为什么会这样。
这是 onPostExecute。更新字段的方法是 checkAgainstLocations() (见下文)
@Override
protected void onPostExecute(final ArrayList<String> strings) {
super.onPostExecute(strings);
if (strings == null) {
Toast.makeText(ctx, "Please check you have an internet connection", Toast.LENGTH_LONG).show();
return;
}
locationsData = cleanLocations(strings);
if (locationsData.size() < 1) {
locationsData.add("Choose a location...");
} else if (!locationsData.get(0).equals("Choose a location...")) {
locationsData.add(0, "Choose a location...");
}
adaptor.clear();
adaptor.addAll(locationsData);
adaptor.notifyDataSetChanged();
changeLocationButton.setEnabled(true);
if (mCurrentLocation != null) {
checkAgainstLocations();
}
}
这是 checkAgainstLocations() 方法。
private void checkAgainstLocations() {
Geocoder gcd = new Geocoder(this, Locale.getDefault());
List<Address> addresses = new ArrayList<>();
if (myLocation != null) {
try {
addresses = gcd.getFromLocation(myLocation.getLatitude(), myLocation.getLongitude(), 1);
} catch (IOException e) {
Log.e("loc", "no location yet");
}
}
if (addresses.size() > 0) {
myCity = addresses.get(0).getLocality().toLowerCase();
} else {
myCity = "National";
}
new LoadPromotions().execute(myCity);
if (locationsData.contains(myCity.toLowerCase())) {
if (!userSelected) {
locationsResult = myCity.toLowerCase();
currentLocation.setText(locationsResult);
currentLocation.postInvalidate();
}
}
}