android 廣播訊息的記憶體怎麼釋放?
Intent i = new Intent(Const.DATABC);//廣播訊息,實現類之間的互動
Bundle mBundle = new Bundle();
//進行資料反序列化,還原資料
mBundle.putString("JSONOBJSTR", LCYDataJSON.toString());
i.putExtras(mBundle);
if(null!= FragmentRealData.s_context)
{
// Log.d(TAG, "Broad to FragmentRealData:"+8);
FragmentRealData.s_context.sendBroadcast(i);
}
是在sendBroadcast後,mBundle = null嗎?