Android工作学习第5天之Activity的传值问题
注:本文大部分为网上转载,本人只是根据工作的需要略做整合!
本章将借用一个实例,讲解如何注册并激活一个新的Activity,以及多个Activity之间如何传值。
下面是主Activity的代码:
[java] view plain copy print?
- package com.chaoyang.activity;
- import android.app.Activity;
- import android.content.Intent;
- import android.os.Bundle;
- import android.text.style.BulletSpan;
- import android.view.View;
- import android.widget.Button;
- import android.widget.Toast;
- publicclass MainActivity extends Activity {
- /** Called when the activity is first created. */
- @Override
- publicvoid onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- Button button =(Button)findViewById(R.id.button);
- button.setOnClickListener(new View.OnClickListener() {
- //给按钮注册点击事件,打开新的Acticity
- @Override
- publicvoid onClick(View v) {
- // TODO Auto-generated method stub
- //为Intent设置要激活的组件(将要激活TheOtherActivity这个Activity)
- Intent intent =new Intent(MainActivity.this,TheOtherActivity.class);//
- //写法一 intent.setClass(MainActivity.this, OtherActivity.class);//设置要激活的组件
- //写法二 intent.setComponent(new ComponentName(MainActivity.this, TheOtherActivity.class));//设置要激活的组件
- //第一种传值方式(代码看起来更加更简洁)
- /*
- intent.putExtra("name", "dinglang");
- intent.putExtra("age", 22);
- */
- //第二种传值方式
- Bundle bundle =new Bundle();
- bundle.putString("name", "dinglang");
- bundle.putInt("age", 22);
- intent.putExtras(bundle);
- /*
- Intent提供了各种常用类型重载后的putExtra()方法,如: putExtra(String name, String value)、 putExtra(String name, long value),在putExtra()方法内部会判断当前Intent对象内部是否已经存在一个Bundle对象,如果不存在就会新建Bundle对象,以后调用putExtra()方法传入的值都会存放于该Bundle对象
- 这些其实可以通过看源码的,内部实现的原理都是一样的
- */
- //startActivity(intent);//不需要接收组件的返回值,就可以直接这样激活了
- //需要接收返回结果。注意返回的结果码
- startActivityForResult(intent, 100);
- }
- });
- }
- @Override
- protectedvoid onActivityResult(int requestCode, int resultCode, Intent data) {
- // TODO Auto-generated method stub
- Toast.makeText(this, data.getStringExtra("result"), 1).show();//得到返回结果
- super.onActivityResult(requestCode, resultCode, data);
- }
- }
下面是otherActivity部分代码:
在相同包下,新建一个类,继承至Activity这个类,重写onCreate方法...
- package com.chaoyang.activity;
- import android.app.Activity;
- import android.content.Intent;
- import android.os.Bundle;
- import android.view.View;
- import android.widget.Button;
- import android.widget.TextView;
- publicclass TheOtherActivity extends Activity {
- @Override
- protectedvoid onCreate(Bundle savedInstanceState) {
- // TODO Auto-generated method stub
- super.onCreate(savedInstanceState);
- setContentView(R.layout.other);//设置该Activity所对应的xml布局文件
- Intent intent =this.getIntent();//得到激活她的意图
- String name =intent.getStringExtra("name");
- int age=intent.getExtras().getInt("age");//第二种取值方式
- TextView textView = (TextView)this.findViewById(R.id.result);
- textView.setText("姓名:"+ name+" 年龄:"+ age);
- Button button = (Button)this.findViewById(R.id.close);
- button.setOnClickListener(new View.OnClickListener() {
- //返回结果给前面的Activity
- @Override
- publicvoid onClick(View v) {
- // TODO Auto-generated method stub
- Intent intent =new Intent();
- intent.putExtra("result", "这是处理结果");
- setResult(20, intent);//设置返回数据
- finish();//关闭activity
- }
- });
- }
- }
新建Activity之间,注意要在layout文件夹中新建一个XML的布局文件。(新建Android项目时如果选择了创建Activity,会默认新建一个XML的布局文件)
下面是布局文件main.xml:
- <?xmlversion="1.0"encoding="utf-8"?>
- <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- />
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="打开OtherActivity"
- android:id="@+id/button"
- />
- </LinearLayout>
下面是布局文件other.xml
[html] view plain copy print?
- <?xmlversion="1.0"encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="这是OtherActivity"
- android:id="@+id/result"
- />
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="关闭Activity"
- android:id="@+id/close"
- />
- </LinearLayout>
最后,注意修改项目清单文件。在里面添加,注册新的Acticity名称
[html] view plain copy print?
- <?xmlversion="1.0"encoding="utf-8"?>
- <manifestxmlns:android="http://schemas.android.com/apk/res/android"
- package="com.chaoyang.activity"
- android:versionCode="1"
- android:versionName="1.0">
- <uses-sdkandroid:minSdkVersion="8"/>
- <applicationandroid:icon="@drawable/icon"android:label="@string/app_name">
- <activityandroid:name=".MainActivity"
- android:label="@string/app_name">
- <intent-filter>
- <actionandroid:name="android.intent.action.MAIN"/>
- <categoryandroid:name="android.intent.category.LAUNCHER"/>
- </intent-filter>
- </activity>
- <!-- 注意项目清单文件中要加上 -->
- <activityandroid:name="TheOtherActivity"android:label="the other Activity"/>
- </application>
- </manifest>
需要注意的知识点:
使用Intent组件附件数据时候,为Activity之间传值的两种写法。
值得一提的是Bundle类的作用
Bundle类用作携带数据,它类似于Map,用于存放key-value名值对形式的值。相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:putString()/getString()和putInt()/getInt(),putXxx()用于往Bundle对象放入数据,getXxx()方法用于从Bundle对象里获取数据。Bundle的内部实际上是使用了HashMap<String, Object>类型的变量来存放putXxx()方法放入的值。
还有就是在onActivityResult这个方法中,第一个参数为请求码,即调用startActivityForResult()传递过去的值 ,第二个参数为结果码,结果码用于标识返回数据来自哪个新Activity。都是起简单的标识作用的(不要和http协议中的404,200等状态码搞混了),可以根据自己的业务需求填写,匹配,必要时候可以根据这个去判断。
转载地址:http://blog.csdn.net/dinglang_2009/article/details/6888111
Android工作学习第5天之Activity的传值问题的更多相关文章
- Android工作学习第5天之Activity的完全退出程序
注:本文大部分为网上转载,本人只是根据工作的需要略做整合! android 完全退出应用程序 注意:1.单例模式的学习 2.Manifest.xml,注意项目清单文件中要加上 android退出应用程 ...
- Android工作学习第5天之TabHost实现菜单栏底部显示
TabHost是一个装载选项卡窗口的容器,实现分模块显示的效果.像新浪微博客户端.微信客户端都是使用tabehost组件来开发的. TabHost的组成: |---TabWidget:实现标签栏,可供 ...
- Android开发学习之路-Service和Activity的通信
在很多时候,Service都不仅仅需要在后台运行,还需要和Activity进行通信,或者接受Activity的指挥,如何来实现,来看代码. 定义一个服务 // 创建一个服务,然后在onBind()中返 ...
- 【Android开发学习笔记】【第五课】Activity的生命周期-上
今天学习Activity当中的七个生命周期函数: 首先得说一个事情,就是在代码当中如果加入了 System.out.println(" ------");之后,如何查看这里面的输出 ...
- 【Android开发学习笔记】【第三课】Activity和Intent
首先来看一个Activity当中启动另一个Activity,直接上代码说吧: (1)首先要多个Activity,那么首先在res-layout下新建一个 Other.xml,用来充当第二个Activi ...
- Android开发学习之路--Activity之初体验
环境也搭建好了,android系统也基本了解了,那么接下来就可以开始学习android开发了,相信这么学下去肯定可以把android开发学习好的,再加上时而再温故下linux下的知识,看看androi ...
- Android学习笔记(一)——Activity简介 和 View
源文链接:http://www.cnblogs.com/shyang--TechBlogs/archive/2011/03/14/1984195.html Android SDK ( Software ...
- Android学习总结(四)—— Activity和 Service进行通信
一.Activity 和 Service进行通信的基本概念 前面我们学习我生命周期里面包含了启动和停止服务的方法,虽然服务器在活动里启动,但在启动了服务之后,活动与服务基本就没有什么关系了.我们在活动 ...
- Android开发学习—— activity
activity生命周期 #Activity生命周期###void onCreate()* Activity已经被创建完毕###void onStart()* Activity已经显示在屏幕,但没有得 ...
随机推荐
- PHP 与pdf文档 与条码
必要的步骤 1.导入require_once "tcpdf/tcpdf.php"; 工具源码在demo中 2.$pdf = new TCPDF("P", &qu ...
- Quartus II 与 Modelsim 联调【转】
Quartus II 9.0版本的时候软件还有自带的仿真工具,现在安装的是11.0以上版本,才发现 Quartus II 11.0以上取消了软件自带的波形仿真工具,因此需要波形仿真就要调用专业的仿真工 ...
- java中的集合类(Collection)中的Set
set集合不包含重复元素及与我们无关的排序!我说hibernate实体类中的集合都用Set呢,难道是因为这个?
- 使用keepalived实现mysql主从复制的自动切换
最近测试了一下mysql+keepalived实现主从自动切换,主从都需要安装keepalived,使用vip漂移实现主从自动切换,这里主要记录的是keepalived的文件配置. 这里mysql搭建 ...
- windows环境下搭建react native环境
一.基础软件1.安装jdk-1.8.0_922.安装android studio-2.1.2(文件大小为1.2G的那个)3.安装node.js(目前最新是6.3.0)4.安装git-2.9.05.安装 ...
- php统计网站访问次数的一个简单方法
这里主要用到了session保存当前访问者,并将访问次数写入本地文件. <? @session_start(); $counter = intval(file_get_contents(&quo ...
- javascript 利用匿名函数对象给你异步回调方法传参数
先来创建一个匿名函数对象: /*** * 匿名函数 */ var callChangeBtn=new function(bugBtn){ this.chage=function(json){ bugB ...
- 以Administrator权限运行VS时无法拖入文件
解决办法 1.从任务管理器中关闭explorer进程(你会发现任务栏什么的都没有了) 2.从任务管理器启动explorer.exe(win8需要手动勾选"以管理员权限运行",win ...
- Maven间接依赖冲突解决办法
如果项目中maven依赖太多,由于还有jar之间的间接依赖,所以可能会存在依赖冲突.依赖冲突大部分都是由于版本冲突引起的,查看maven的依赖关系,可以找到引起冲突的间接依赖 如上图,通过Depend ...
- ios 写项目的时候遇到的问题及解决方案(1)
1.解决headerView不随cell一起滚动的问题 解决方案:myHeaderView为自己创建的view加在tableHeadView上, self.tableView.tableHeadVie ...