私のアプリでは、でデータを保存したいと思いますsavedInstanceState()
。保存したいArrayList<HashMap<String,String>>
。そして今のところ私はそれをすることができません。これが私を悩ませている私のコードです
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putParcelableArrayList("places", (ArrayList<? extends Parcelable>) places);
}
restore()メソッド
private void restore(Bundle savedInstanceState) {
// TODO Auto-generated method stub
//What should i do here! i have try many things but none of them is helping
}