Parcelable for Android

Source: Internet
Author: User

Parcelable must be implemented: And the writexxx and readxxx attributes must be in one-to-one correspondence.

Public class basemodel implements parcelable {public long mid; public long getmid () {return mid;} public void setmid (long mid) {This. mid = mid ;}@ override public int describecontents () {// todo auto-generated method stub return 0 ;}@ override public void writetoparcel (parcel DEST, int flags) {// todo auto-generated method stub DeST. writelong (MID);} public static final parcelable. creator <basemodel> creator = new parcelable. creator <basemodel> () {// rewrite creator @ override public basemodel createfromparcel (parcel source) {basemodel P = new basemodel (); p. mid = source. readlong (); Return P ;}@ override public basemodel [] newarray (INT size) {// todo auto-generated method stub return New basemodel [size] ;}};}

Send broadcast:

public static void sendList(Context mContext,ArrayList<MusicModel> list){        Intent intent = new Intent("PLAYLIST");                intent.putParcelableArrayListExtra(MediaService.MediaServicePlayList, list);                mContext.sendBroadcast(intent);    }

Receive broadcast:

public class PlayListReceiver extends BroadcastReceiver{        @Override        public void onReceive(Context context, Intent intent) {                        mList = intent.getParcelableArrayListExtra(MediaServicePlayList);                    }            }

Register broadcast:

playListReceiver = new PlayListReceiver();        registerReceiver(playListReceiver,new IntentFilter("PLAYLIST"));

 

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.