0
私はアンドロイドのナビゲーションバーの[戻る]ボタンを押すと、アプリケーションが閉じられると活動がonDestory()メソッドと呼ばれていたアンドロイドリソースが解放されたときは?
private List<WeatherCard> mWeatherCards = new ArrayList<>();
public class WeatherCard { private String city; private TextView mWeatherIcon; private TextView mCityText; private TextView mTemperatureText; private TextView mRefreshTimeText; private TextView mDescription; private TextView mWindIcon; private CardView mCardView; }
、フラグメントHomeFragment.javaでプライベート変数を宣言したが、変数mWeatherCardsがリサイクルされていないことが判明しました。これは、taskmanagerを使用してアプリケーションを終了した場合にのみクリーニングされます。 タスクマネージャと戻るボタンの違いは何ですか?そしてアンドロイドリソースが解放されたときですか?
生の種類のコレクションを使用しないでください。 –
申し訳ありませんが、 – Bamboo