博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android开发10——Activity的跳转与传值
阅读量:6084 次
发布时间:2019-06-20

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

Activity跳转与传值,主要是通过Intent类,Intent的作用是激活组件和附带数据。 

intent可以激活Activity,服务,广播三类组件。本博文讲的是显示意图激活Activity组件。所谓显示意图就是在activity的激活时,显示指出了需要激活的activity的名字。

 

一、Activity跳转

方法一
Intent intent = new Intent(A.this, B.class); 
startActivity(intent);

方法二
Intent intent = new Intent();
intent.setClass(A.this, B.class);
startActivity(intent);

实现从A跳转到B(A、B均继承自Activity)

二、传递数据

Activity A 传递数据

方法一
Intent intent = new Intent();
intent.setClass(A.this, B.class);
intent.putExtra("name", "xy");
intent.putExtra("age", 22);

startActivity(intent);

 

方法二
Intent intent = new Intent(A.this, B.class); 
Bundle bundle = new Bundle();
bundle.putString("name", "xy");
bundle.putInt("age", 22);

intent.putExtras(bundle);
startActivity(intent);

Activity B 接收数据
 

// 获取参数1
Intent intent = this.getIntent();
String name = intent.getStringExtra("name");
int age = intent.getIntExtra("age", 22); // 缺省值为22

// 获取参数2
Bundle bundle = intent.getExtras();
String name2 = bundle.getString("name");
int age2 = bundle.getInt("age", 22);

两种获取参数方式均可,并不是和传参1,2方法一一对应

 

三、Activity返回值

跳转后前一个Activity已经被destroy了。如若要返回并显示数据,就必须将前一个Activity再次唤醒,同时调用某个方法来获取并显示数据。做法如下

1.从A页面跳转到B页面时不可使用startActivity()方法,而要使用startActivityForResult()方法

2.在A页面的Activity中,需要重写onActivityResult(int requestCode, int resultCode, Intent data)方法

Activity A

 
  1. // 有返回值的Activity  
  2. public void openNewActivity2(View v)  
  3. {  
  4.  Intent intent = new Intent();  
  5.  intent.setClass(this.getApplicationContext(), OtherActivity2.class);  
  6.  intent.putExtra("name""xy");  
  7.  intent.putExtra("age"20);  
  8.  startActivityForResult(intent, 1);  
  9. }  
  10.  
  11. @Override 
  12. protected void onActivityResult(int requestCode, int resultCode, Intent data)  
  13. {  
  14.  // requestCode用于区分业务  
  15.  // resultCode用于区分某种业务的执行情况  
  16.  if (1 == requestCode && RESULT_OK == resultCode)  
  17.  {  
  18.   String result = data.getStringExtra("result");  
  19.   Toast.makeText(this.getBaseContext(), result, Toast.LENGTH_SHORT).show();  
  20.  }  
  21.  else 
  22.  {  
  23.   Toast.makeText(this.getBaseContext(), "无返回值", Toast.LENGTH_SHORT).show();  
  24.  }  
  25. }  

Activity B

 
  1. public void close(View v)  
  2. {  
  3.  Intent intent = new Intent();  
  4.  intent.putExtra("result""返回值");  
  5.  this.setResult(RESULT_OK, intent); // 设置结果数据  
  6.  this.finish(); // 关闭Activity  
  7. }  

 

四、总结

以上采用的意图intent均是显示意图。

 

参考地址:

本文转自IT徐胖子的专栏博客51CTO博客,原文链接http://blog.51cto.com/woshixy/1081317如需转载请自行联系原作者

woshixuye111

你可能感兴趣的文章
ssh免密连接互信认证
查看>>
ElasticSearch使用
查看>>
使用grep、awk统计查询日志
查看>>
Spring 5 core 中的 @NonNull 是个什么鬼?!
查看>>
vsftpd系列--2--匿名访问控制
查看>>
Excel工作表保护破解方法
查看>>
实现geo相关
查看>>
SSM项目搭建三(终)
查看>>
vmware esxi基础篇之模版与克隆
查看>>
拥抱 Gradle: 下一代自动化工具
查看>>
CyclicBarrier让多线程齐步走
查看>>
tomcat与web程序结构与Http协议与HttpUrlConnection
查看>>
PHPStorm下调试使用CURL抓取数据中文乱码的一种可能
查看>>
解决hadoop namenode -format / hdfs namenode -format 找不到java的文件目录
查看>>
springMVC 几种页面跳转方式
查看>>
Python的集合类型详解17
查看>>
HBase配置优化
查看>>
英特网级别的服务设计及部署
查看>>
动态路由
查看>>
mssql dba問題與答案
查看>>