码迷,mamicode.com
首页 > 移动开发 > 详细

Android学习之Activity跳转与传值

时间:2017-05-24 18:30:22      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:作用   his   pos   cti   tac   ack   putextra   this   puts   

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

 


一、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方法一一相应

Android学习之Activity跳转与传值

标签:作用   his   pos   cti   tac   ack   putextra   this   puts   

原文地址:http://www.cnblogs.com/yutingliuyl/p/6900207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!