AndroID 中Activity 之间传递参数
1.传递简单数据
在A Activity中
findVIEwByID(R.ID.startBActicityBtn).setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { Intent i = new Intent(MainActivity.this,TheActivity.class);// 对基础的数据类型进行传递 i.putExtra("data","我是国人"); startActivity(i); } });
在B Activity中接受数据
tv =(TextVIEw)findVIEwByID(R.ID.TheTextVIEw); Intent i = getIntent(); tv.setText(i.getStringExtra("data"));
这种传值就是传递基本的数据类型
2.传递数据 包Bundle
在A Activity中
findVIEwByID(R.ID.startBActicityBtn).setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { Intent i = new Intent(MainActivity.this,TheActivity.class); Bundle bundle = new Bundle(); bundle.putString("name","qll"); bundle.putInt("age",3);// i.putExtras(bundle); // 另种传递方式 i.putExtra("data",bundle); startActivity(i); } }); }
在B Activity中接受数据
tv =(TextVIEw)findVIEwByID(R.ID.TheTextVIEw); editText = (EditText) findVIEwByID(R.ID.editText3); Intent i = getIntent();// Bundle date = i.getExtras();// 接受方式不同 Bundle date = i.getBundleExtra("data"); tv.setText(String.format("name=%s,age=%d",date.getString("name"),date.getInt("age")));
这总传递方式类似iOS中传递字典数据类型过来 。
3.传递值对象
自定义一个User类,传递自定义类需要对类进行序列化
用Serializable进行序列化
这种方法只需要类实现Serializable接口就可以了
User 类
import java.io.Serializable;public class User implements Serializable{ private String name; private int age; public int getAge(){ return age; } public voID setAge(int age){ this.age = age; } public String getname(){ return name; } public voID setname(String name){ this.name = name; } public User(String name,int age){ this.name = name; this.age = age; }
在A Activity中
findVIEwByID(R.ID.startBActicityBtn).setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { Intent i = new Intent(MainActivity.this,TheActivity.class); i.putExtra("user",new User("qll",24)); startActivity(i); } }); }
在B Activity中
tv =(TextVIEw)findVIEwByID(R.ID.TheTextVIEw); User user = (User)i.getSerializableExtra("user"); tv.setText(String.format("user info(name=%s,age=%d)",user.getname(),user.getAge()));
用Parcelable实现
同样的需要实现Parcelable接口
User 类
package com.example.wyhaiapple.transferdata1;import androID.os.Parcel;import androID.os.Parcelable;import androID.text.ParcelableSpan;public class User implements Parcelable{ private String name; private int age; public int getAge(){ return age; } public voID setAge(int age){ this.age = age; } public String getname(){ return name; } public voID setname(String name){ this.name = name; } public User(String name,int age){ this.name = name; this.age = age; } @OverrIDe public int describeContents() { return 0; } @OverrIDe public voID writetoParcel(Parcel dest,int flags) { dest.writeString(getname()); dest.writeInt(getAge()); } public static final Creator<User> CREATOR = new Creator<User>() { @OverrIDe public User createFromParcel(Parcel source) { return new User(source.readString(),source.readInt()); } @OverrIDe public User[] newArray(int size) { return new User[size]; } };}
在A Activity中 与上面的相同
在B Activity中
tv =(TextVIEw)findVIEwByID(R.ID.TheTextVIEw); User user = (User)i.getParcelableExtra("user"); tv.setText(String.format("user info(name=%s,user.getAge()));
4.获取 Activity 的返回参数
在B Activity中
protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_the); tv =(TextVIEw)findVIEwByID(R.ID.TheTextVIEw); editText = (EditText) findVIEwByID(R.ID.editText3); findVIEwByID(R.ID.button2).setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { Intent i = new Intent(); i.putExtra("data",editText.getText().toString()); setResult(1,i); finish(); } }); }}
在A Activity中
startActivityForResult(i,0); @OverrIDe protected voID onActivityResult(int requestCode,int resultCode,Intent data) { super.onActivityResult(requestCode,resultCode,data); textVIEw.setText("返回的值:"+data.getStringExtra("data")); }
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
总结以上是内存溢出为你收集整理的Android 中Activity 之间传递参数全部内容,希望文章能够帮你解决Android 中Activity 之间传递参数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)