Activity之间通信、跳转(Intent)
2021/8/3 23:36:55
本文主要是介绍Activity之间通信、跳转(Intent),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Activity之间通信、跳转(Intent)
1.不带数据跳转
Intent intent = new Intent() ; // Intent intent = new Intent(MainActivity.this,SecondActivity.class) ; intent.setClass(MainActivity.this,SecondActivity.class) ; startActivity(intent);
2.带数据或多个数据
2.1跳转
Intent intent = new Intent(MainActivity.this,SecondActivity.class); //容器 Bundle bundle = new Bundle() ; //往 Bundle 容器里面添加数据 bundle.putInt("number",123456789); bundle.putString("string","Hello World"); //绑定 intent intent.putExtras(bundle) ; startActivity(intent);
2.2接收
//获取 Intent Intent intent = getIntent(); //获取 Bundle 容器 Bundle bundle = intent.getExtras() ; //从 Bundle 容器中取出数据 String s = bundle.getString("string") ; int i = bundle.getInt("number") ;
3带数据跳转,带数据返回
3.1带数据跳转
Intent intent = new Intent(MainActivity.this,SecondActivity.class); //容器 Bundle bundle = new Bundle() ; //往 Bundle 容器里面添加数据 bundle.putString("string","Hello World"); //绑定 intent intent.putExtras(bundle) ; startActivityForResult(intent,101);
同时要实现 onActivityResult 方法来接收处理返回的数据
@Override protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { super.onActivityResult(requestCode, resultCode, data); //根据 requestCode 和 resultCode 来判断是否是对应的 Activity 跳转、返回的数据,进行处理。 if (requestCode == 101 && resultCode == 202){ String s = data.getStringExtra("back") ; Log.e("s=====",s) ; }else { Log.e("返回的数据:","不见了???"); } }
3.2接收处理数据,并带上数据返回(到3.1 onActivityResult方法中处理返回的数据)
//获取 Intent Intent intent = getIntent(); //获取 Bundle 容器 Bundle bundle = intent.getExtras() ; //从 Bundle 容器中取出数据 String s = bundle.getString("string") ; //处理数据 Log.e("string : ",s) ; // intent 添加数据,并返回 intent.putExtra("back","返回的数据"); setResult(202,intent);
这篇关于Activity之间通信、跳转(Intent)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-25安卓NDK 是什么?-icode9专业技术文章分享
- 2024-12-25caddy 可以定义日志到 文件吗?-icode9专业技术文章分享
- 2024-12-25wordfence如何设置密码规则?-icode9专业技术文章分享
- 2024-12-25有哪些方法可以实现 DLL 文件路径的管理?-icode9专业技术文章分享
- 2024-12-25错误信息 "At least one element in the source array could not be cast down to the destination array-icode9专业技术文章分享
- 2024-12-25'flutter' 不是内部或外部命令,也不是可运行的程序 或批处理文件。错误信息提示什么意思?-icode9专业技术文章分享
- 2024-12-25flutter项目 as提示Cannot resolve symbol 'embedding'提示什么意思?-icode9专业技术文章分享
- 2024-12-24怎么切换 Git 项目的远程仓库地址?-icode9专业技术文章分享
- 2024-12-24怎么更改 Git 远程仓库的名称?-icode9专业技术文章分享
- 2024-12-24更改 Git 本地分支关联的远程分支是什么命令?-icode9专业技术文章分享