我有一个Activity
with a ,我使用 a 以编程MapFragment
方式添加到:Activity
FragmentTransaction
private static final String MAP_FRAGMENT_TAG = "map";
private MapFragment mapFragment = null;
...
protected void onCreate(Bundle savedInstanceState) {
...
mapFragment = (MapFragment) getFragmentManager().findFragmentByTag(MAP_FRAGMENT_TAG);
if (mapFragment == null) {
mapFragment = MapFragment.newInstance();
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.fragment_wrapper, mapFragment, MAP_FRAGMENT_TAG);
fragmentTransaction.commit();
}
...
}
标准方式。然后我GoogleMap
从 中获取实例mapFragment
并设置它的设置,设置监听器,用它做一些事情。一切正常。
然后当用户完成地图时,AsyncTask
触发 an 以显示 a ProgressDialog
,执行一些操作,将不同的片段放入fragment_wrapper
并再次关闭ProgressDialog
:
private class GetFlightsTask extends AsyncTask<Double, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
// the activity context has been passed to the AsyncTask through its constructor
loadingFlightsSpinner = new ProgressDialog(context);
// setting the dialog up
loadingFlightsSpinner.show();
}
@Override
protected String doInBackground(Double... params) {
// some pretty long remote API call
// (loading a JSON file from http://some.website.com/...)
}
@Override
protected void onPostExecute(String flightsJSON) {
super.onPostExecute(flightsJSON);
// here I do stuff with the JSON and then I swtich the fragments like this
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
FlightsFragment fragment = new FlightsFragment();
fragmentTransaction.replace(R.id.fragment_wrapper, fragment);
fragmentTransaction.addToBackStack(null);
fragmentTransaction.commit();
loadingFlightsSpinner.dismiss();
}
一切仍然正常。用户在地图中做了一些事情,FlightsFragment
然后可能决定返回地图。按下后退按钮,地图再次弹出。这是地图变得滞后的时候。它上面的国家/城市名称加载非常缓慢,它在移动地图时严重滞后......我不知道为什么,我不做任何关于弹出的事情MapFragment
。
有趣的是,它会在例如按下主页按钮然后再次返回应用程序时得到修复......
我究竟做错了什么?
谢谢你的任何想法。