Il android.os.Message
utilizza una Bundle
di inviare con il suo sendMessage-metodo. Quindi è possibile inserire un HashMap
all'interno di un Bundle
?
Il android.os.Message
utilizza una Bundle
di inviare con il suo sendMessage-metodo. Quindi è possibile inserire un HashMap
all'interno di un Bundle
?
Risposte:
prova come:
Bundle extras = new Bundle();
extras.putSerializable("HashMap",hashMap);
intent.putExtras(extras);
e nella seconda attività
Bundle bundle = this.getIntent().getExtras();
if(bundle != null) {
hashMap = bundle.getSerializable("HashMap");
}
perché Hashmap per impostazione predefinita implementa in Serializable
modo da poterlo passare utilizzando putSerializable
in Bundle e ottenere altre attività utilizzandogetSerializable
Nota: se stai usando AppCompatActivity, dovrai chiamare il
metodo protected void onSaveInstanceState(Bundle outState) {}
( NOT public void onSaveInstanceState(Bundle outState, PersistableBundle outPersistentState) {}
).
Codice di esempio ...
Memorizza la mappa:
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putSerializable("leftMaxima", leftMaxima);
outState.putSerializable("rightMaxima", rightMaxima);
}
E riceverlo in onCreate:
if (savedInstanceState != null) {
leftMaxima = (HashMap<Long, Float>) savedInstanceState.getSerializable("leftMaxima");
rightMaxima = (HashMap<Long, Float>) savedInstanceState.getSerializable("rightMaxima");
}
Scusa se è una sorta di risposta duplicata, forse qualcuno la troverà utile. :)
Se vuoi inviare tutte le chiavi del pacchetto, puoi provare
for(String key: map.keySet()){
bundle.putStringExtra(key, map.get(key));
}
public static Bundle mapToBundle(Map<String, Object> data) throws Exception {
Bundle bundle = new Bundle();
for (Map.Entry<String, Object> entry : data.entrySet()) {
if (entry.getValue() instanceof String)
bundle.putString(entry.getKey(), (String) entry.getValue());
else if (entry.getValue() instanceof Double) {
bundle.putDouble(entry.getKey(), ((Double) entry.getValue()));
} else if (entry.getValue() instanceof Integer) {
bundle.putInt(entry.getKey(), (Integer) entry.getValue());
} else if (entry.getValue() instanceof Float) {
bundle.putFloat(entry.getKey(), ((Float) entry.getValue()));
}
}
return bundle;
}
Sto usando la mia implementazione kotlin di Parcelable per raggiungere questo obiettivo e finora funziona per me. È utile se vuoi evitare il serializzabile pesante.
Inoltre, affinché funzioni, consiglio di usarlo con questi
Dichiarazione
class ParcelableMap<K,V>(val map: MutableMap<K,V>) : Parcelable {
constructor(parcel: Parcel) : this(parcel.readMap(LinkedHashMap<K,V>()))
override fun writeToParcel(parcel: Parcel, flags: Int) {
parcel.writeMap(map)
}
override fun describeContents(): Int {
return 0
}
companion object CREATOR : Parcelable.Creator<ParcelableMap<Any?,Any?>> {
@JvmStatic
override fun createFromParcel(parcel: Parcel): ParcelableMap<Any?,Any?> {
return ParcelableMap(parcel)
}
@JvmStatic
override fun newArray(size: Int): Array<ParcelableMap<Any?,Any?>?> {
return arrayOfNulls(size)
}
}
}
Uso
Scrivi
val map = LinkedHashMap<Int, String>()
val wrap = ParcelableMap<Int,String>(map)
Bundle().putParcelable("your_key", wrap)
leggere
val bundle = fragment.arguments ?: Bundle()
val wrap = bundle.getParcelable<ParcelableMap<Int,String>>("your_key")
val map = wrap.map
Non dimenticare che se la tua mappa K,V
non è parcellizzata per impostazione predefinita, devono essere implementateParcelable