所以我有一個簡單的活動與下面的代碼:SupportMapFragment內存泄漏?
public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
SupportMapFragment fragment = (SupportMapFragment) getSupportFragmentManager().findFragmentByTag("tag");
if(fragment == null) {
fragment = new SupportMapFragment();
getSupportFragmentManager().beginTransaction()
.replace(android.R.id.content, fragment, "tag").commit();
}
}
}
當我繼續旋轉屏幕,我可以看到內存堆在DDMS增加。即使我做了幾次GC,內存也不會恢復到正常水平。我做錯了什麼,或者Google剛剛發佈了他們的新地圖api,並且發生了嚴重的內存泄露?
測試上的HTC Desire - 安卓2.2.2
編輯:也對三星galaxy S3測試 - 安卓4.1.2
編輯:沒有給OOM,但堆之前沒有倒下我在地圖上移動等。
我偶然發現了同樣的問題,它似乎是一個真正的錯誤。 Google Maps Bug Tracker上的問題已經打開:http://code.google.com/p/gmaps-api-issues/issues/detail?id=4766 –
現在在下一個版本中標記爲已修復。 – theblitz
@theblitz真棒,感謝您的更新。 – Warpzit