Is it possible to put an instance of android.location.Address with Intent to another activity?
Address current_location;
I mean, I am trying to put current_location directly with the intent by:
IntentName.putExtra("current_location",current_location);or indirectly by a bundle:
Bundle b = new Bundle(); b.put....("current_location",current_location); IntentName.put(b);
If none of the above strategy support "Address" then what should be the best approach to pass the Address instance to another activity?
If I declare,
public static Address current_location;
and try to access it from another activity then there is no guarantee that Android will hold current_location data. Or am I wrong?
In such situation, what approach should be followed?