Values are sorted by map. intent transmits the map set and activityintent.

Source: Internet
Author: User

Values are sorted by map. intent transmits the map set and activityintent.

There is a small problem in the projects over the past two days, that is, the map set passed between 'activity' is unordered, and I hope it is ordered. So I will use this method.

1. Create the SerializableMap class to implement the Serializable interface. Place the map set internally and define the generic settings.

2. B Interface

Intent intent =NewIntent (); intent. putExtra ("Data_return","Success");FinalSerializableMap myMap =NewSerializableMap (); myMap. setMap (Map);// Add map data to the encapsulated myMap                Bundle bundle =NewBundle (); bundle. putSerializable ("Map", MyMap); intent. putExtras (bundle); setResult (20, intent); finish ();
3. interface
In the onActivityResult method
Bundle extras = data. getExtras ();
SerializableMap serializableMap = (SerializableMap) extras.get("map");Map
 
   map1 = serializableMap.getMap();
 
This is basically the case.
The transferred map and the received map both use LikedHashMap.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.