Android中自定义数据类型在两个act…

【转载】作为Android开发者大家都知道两个activity之间的跳转及数据的传递是通过intent和bundle来实现,在intent下有挺多方法来协助我们实现连个activity间的交互,但有时我们需要传递的不单单只是一个简单的数据类型,而是我们自己封转的数据对象,二进制对象,那我们改如何实现呢?

要实现它,我们有两个方法,都是去实现android里的接口,他们分别是serialiable和Parcelabel,对于serialable的实现方式比较简单,只需在我们的数据类实现它,并在activity下通过bundle的协助,使用putserialableExtras将对象存放在bundle中,而对于Parcelable我需要重新实现它下面的creator对象,之后通过intent进行传递。

 

(1)Serialable

  1. package cn.com.wd;  
  2.   
  3. import java.io.Serializable;  
  4.   
  5. public class Person implements Serializable{  
  6.       
  7.     private static final long serialVersionUID 1L;  
  8.     private String name;  
  9.     private String age;  
  10.     private String sex;  
  11.     private String id;  
  12.     public String getName()  
  13.         return name;  
  14.      
  15.     public void setName(String name)  
  16.         this.name name;  
  17.      
  18.     public String getAge()  
  19.         return age;  
  20.      
  21.     public void setAge(String age)  
  22.         this.age age;  
  23.      
  24.     public String getSex()  
  25.         return sex;  
  26.      
  27.     public void setSex(String sex)  
  28.         this.sex sex;  
  29.      
  30.     public String getId()  
  31.         return id;  
  32.      
  33.     public void setId(String id)  
  34.         this.id id;  
  35.      
  36.   
  37.  

 

  1. package cn.com.wd;  
  2.   
  3. import Android.app.Activity;  
  4. import android.content.Intent;  
  5. import android.os.Bundle;  
  6. import android.view.View;  
  7. import android.view.View.OnClickListener;  
  8. import android.widget.Button;  
  9. import android.widget.EditText;  
  10.   
  11. public class ObjectPassDemoActivity extends Activity  
  12.     private EditText name,id,sex,age;  
  13.     private Button button;  
  14.       
  15.     @Override  
  16.     public void onCreate(Bundle savedInstanceState)  
  17.         super.onCreate(savedInstanceState);  
  18.         setContentView(R.layout.main);  
  19.         name (EditText)findViewById(R.id.editname);  
  20.         id (EditText)findViewById(R.id.editage);  
  21.         sex (EditText)findViewById(R.id.editsex);  
  22.         age (EditText)findViewById(R.id.editage);  
  23.         button (Button)findViewById(R.id.next);  
  24.         button.setOnClickListener(new OnClickListener()  
  25.             @Override  
  26.             public void onClick(View v)  
  27.                 // TODO Auto-generated method stub   
  28.                 String namestr name.getText().toString();  
  29.                 String idstr id.getText().toString();  
  30.                 String sexstr sex.getText().toString();  
  31.                 String agestr age.getText().toString();  
  32.                 Person person new Person();  
  33.                 person.setAge(agestr);  
  34.                 person.setId(idstr);  
  35.                 person.setName(namestr);  
  36.                 person.setSex(sexstr);  
  37.                 Bundle bundle new Bundle();  
  38.                 bundle.putSerializable("personObject"person);  
  39.                 Intent intent new Intent(ObjectPassDemoActivity.thisResultActivty.class);  
  40.                 intent.putExtras(bundle);  
  41.                 startActivity(intent);  
  42.              
  43.         });  
  44.      
  45.  

 

  1. package cn.com.wd;  
  2.   
  3. import Android.app.Activity;  
  4. import android.content.Intent;  
  5. import android.os.Bundle;  
  6. import android.widget.TextView;  
  7.   
  8. public class ResultActivty extends Activity  
  9.     private TextView name,age,id,sex;  
  10.     @Override  
  11.     protected void onCreate(Bundle savedInstanceState)  
  12.         // TODO Auto-generated method stub   
  13.         super.onCreate(savedInstanceState);  
  14.         setContentView(R.layout.result);  
  15.         name (TextView)findViewById(R.id.name);  
  16.         age (TextView)findViewById(R.id.age);  
  17.         id (TextView)findViewById(R.id.id);  
  18.         sex (TextView)findViewById(R.id.sex);  
  19.         Intent intent this.getIntent();  
  20.         Bundle bundle intent.getExtras();  
  21.         Person person (Person)bundle.getSerializable("personObject");  
  22.         name.setText(person.getName());  
  23.         age.setText(person.getAge());  
  24.         id.setText(person.getId());  
  25.         sex.setText(person.getSex());  
  26.      
  27.         
  28.  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值