博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Parcelable in Android
阅读量:4476 次
发布时间:2019-06-08

本文共 4875 字,大约阅读时间需要 16 分钟。

Parcelable(SDK)

Interface for classes whose instances can be written to and restored from a 

Classes implementing the Parcelable interface must also have a static field called CREATOR, which is an object implementing the interface.

Passing data between activities is quite easy. 

You would normally do that using the Bundle packed into an intent. But sometimes you need to pass complex objects from one activity to another. 

One workaround would be to keep a static instance of the object int your Activity and access it from you new Activity. This might help, but it's definitely not a good way to do this. 

To pass such objects directly through the Bundle, your class would need to implement the Parcelable interface. 

Example:

MainActivity, SubActivity, Person

MainActivity

package com.learn; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity extends Activity implements OnClickListener { private static final String TAG = "Parcelable"; public static final String KEY = "key"; private Button btn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Log.d(TAG, "MainActivity"); btn = (Button)findViewById(R.id.btn); btn.setOnClickListener(this); } @Override public void onClick(View v) { Log.d(TAG, "onClick"); if(R.id.btn == v.getId()){ Person mPerson = new Person(); mPerson.setName("Bill"); mPerson.setAge(22); Bundle bundle = new Bundle(); bundle.putParcelable(KEY, mPerson); // mPerson -> Parcelable Log.d(TAG, "mPerson=" + mPerson); Intent intent = new Intent(this, SubActivity.class); intent.putExtras(bundle); startActivity(intent); Log.d(TAG, "startActivity"); } } }
SubActivity

package com.learn; import android.app.Activity; import android.os.Bundle; import android.os.Parcelable; import android.util.Log; import android.widget.TextView; public class SubActivity extends Activity { private static final String TAG = "Parcelable"; private TextView tv; @Override public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.main); Log.d(TAG, "SubActivity"); Parcelable parcelable = getIntent().getParcelableExtra(MainActivity.KEY); Person mPerson = (Person)parcelable; // Parcelable -> Person Log.d(TAG, "parcelable=" + parcelable + "; mPerson=" + mPerson); tv = (TextView)findViewById(R.id.tv); tv.setText("name=" + mPerson.getName() + "; age=" + mPerson.getAge()); } }
Person

package com.learn; import android.os.Parcel; import android.os.Parcelable; import android.util.Log; public class Person implements Parcelable{ private static final String TAG = "Parcelable"; private String name; private int age; public Person(){ } public void setName(String name){ this.name = name; } public String getName(){ return this.name; } public void setAge(int age){ this.age = age; } public int getAge(){ return this.age; } public static final Parcelable.Creator<Person> CREATOR = new Creator<Person>() { @Override public Person createFromParcel(Parcel source) { Log.d(TAG, "createFromParcel(Parcel source)"); Person mPerson = new Person(); mPerson.name = source.readString(); mPerson.age = source.readInt(); return mPerson; } @Override public Person[] newArray(int size) { Log.d(TAG, "newArray(int size)"); return new Person[size]; } }; @Override public int describeContents() { Log.d(TAG, "describeContents()"); return 0; } @Override public void writeToParcel(Parcel dest, int flags) { Log.d(TAG, "writeToParcel(Parcel dest, int flags)"); dest.writeString(name); dest.writeInt(age); } }
main.xml

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TextView android:id="@+id/tv" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Parcelable" /> </LinearLayout>

Running Result

click, then

Log

D/Parcelable( 487): MainActivity D/Parcelable( 487): onClick D/Parcelable( 487): mPerson=com.learn.Person@40520b98 D/Parcelable( 487): writeToParcel(Parcel dest, int flags) D/Parcelable( 487): startActivity D/Parcelable( 487): SubActivity D/Parcelable( 487): createFromParcel(Parcel source) D/Parcelable( 487): parcelable=com.learn.Person@405269f8; mPerson=com.learn.Person@405269f8

Analyse

writeToParcel(Parcel dest, int flags)         ----          bundle.putParcelable(KEY, mPerson)

createFromParcel(Parcel source)             ----          (Person)getIntent().getParcelableExtra(MainActivity.KEY)

source                                                        ----          dest

转载于:https://www.cnblogs.com/wdpp/archive/2011/11/08/2386723.html

你可能感兴趣的文章
最近准备整理一下手头资料,开发一个工作流和表单管理系统
查看>>
C#与数据结构--图的遍历
查看>>
ispy 编译笔记
查看>>
bzoj1067——SCOI2007降雨量(线段树,细节题)
查看>>
day 1
查看>>
洛谷P1282 多米诺骨牌【线性dp】
查看>>
数据类型的提升(promotion)
查看>>
Thead是不能返回值的,但是作为更高级的Task当然要弥补一下这个功能。
查看>>
Android呼叫转移跳转到拨号盘 “#”号显示不出来
查看>>
Python中的生成器与yield
查看>>
JQuery 的Bind()事件
查看>>
Maven 常用配置
查看>>
Objects源码解析
查看>>
video
查看>>
栈的c语言顺序实现(动态申请空间)
查看>>
【转】 Pro Android学习笔记(六七):HTTP服务(1):HTTP GET
查看>>
获取子iframe框架的元素
查看>>
WordCount bug修复录
查看>>
承载进程 (vshost.exe)
查看>>
[转]WPF MVVM 实战
查看>>