Android中如何实现Activity间传递参数
发表于:2025-01-25 作者:千家信息网编辑
千家信息网最后更新 2025年01月25日,本篇内容主要讲解"Android中如何实现Activity间传递参数",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"Android中如何实现Activity
千家信息网最后更新 2025年01月25日Android中如何实现Activity间传递参数
本篇内容主要讲解"Android中如何实现Activity间传递参数",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"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 CreatorCREATOR = new Creator () { @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,age=%d)",user.getName(),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间传递参数"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
数据
参数
方式
类型
内容
序列
接口
方法
学习
不同
实用
更深
兴趣
国人
基础
字典
实用性
实际
对象
就是
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
网络安全威胁攻击手段
美的公司数据库
软件开发违约赔偿
网络技术专升本选什么专业
岳阳汨罗市软件开发
asp从数据库读取数据
一个云服务器能不能建两个网站
计算机网络技术的成熟应用
酒店数据库泄露2020
智能视频分析服务器 系统
ftp服务器指定用户无法登陆
网络安全小知识儿童手抄报
做电子软件开发的还有夜班吗
三大数据库论文用哪个
数据库无法读取
广州安卓软件开发公司如何选择
互联网软件开发反向
软件开发中软件工具的作用
石林方便软件开发
医学影像后处理服务器系统图片
如何设置服务器发布网页
dell服务器集群管理
互联网贷款软件开发
我的世界服务器沙子怎么不掉落
武林外传武林之巅服务器
wow启动数据库失败
兰州网络安全工程师高品质的教学
服务器防护验证怎么取消
苹果软件开发面试经验
哈工大考研网络安全