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已经显示在屏幕,但没有得 ...
随机推荐
- and 与 && or 与 || 的差异之处
其实就是比较他们的优先级 // --------------------// "||" 比 "or" 的优先级高 // 表达式 (false || true) ...
- Linux跨服务器拷贝文件详解
要实现跨服务器拷贝文件,只需执行以下命令就可以: scp /temp/FastDFS_v3..tar.gz root@ip:/temp 拷文件夹如下: scp -r /webapps/xxx root ...
- 用程序获取 Internet 时间 无通用性程序后的暂用办法
并不是完全失败,但没找到一个通用的办法,这个通用指的不能通用所有的时间服务器,而不是说操作系统. 网上的方案很多,有用Socket类.或TcpClient类(C#).或UdpClient类,端口有使用 ...
- (转) How to Train a GAN? Tips and tricks to make GANs work
How to Train a GAN? Tips and tricks to make GANs work 转自:https://github.com/soumith/ganhacks While r ...
- JSBinding / Testing
Unity version compatibilities 5.3.5 5.2.0 5.1.5 5.0.4 4.7.2 4.7.0 4.6.9 4.6.0 4.5.5 Platform compati ...
- 【Unity3D基础教程】给初学者看的Unity教程(四):通过制作Flappy Bird了解Native 2D中的RigidBody2D和Collider2D
作者:王选易,出处:http://www.cnblogs.com/neverdie/ 欢迎转载,也请保留这段声明.如果你喜欢这篇文章,请点[推荐].谢谢! 引子 在第一篇文章[Unity3D基础教程] ...
- jquery之文档操作
append(content|fn) 向每个匹配的元素内部添加内容(元素内部) appendTo(content) 把所有匹配的元素追加到另一个指定的元素中(元素内部) prepend(content ...
- 学习地址(oraclemysqllinux)
1.安装配置 http://blog.chinaunix.net/uid-27126319-id-3466193.htmlhttp://www.cnblogs.com/gaojun/archive/2 ...
- 使用ionic framework创建一个简单的APP
ionic是一个以cordova为基础的html5前端框架,功能强大,能够快速做出与原生开发相似的应用. 一,安装和配置 1,安装(前提:cordova环境配置完成) npm install -g i ...
- Python xlrd、xlwt、xlutils修改Excel文件
一.xlrd读取excel 这里介绍一个不错的包xlrs,可以工作在任何平台.这也就意味着你可以在Linux下读取Excel文件.首先,打开workbook: import xlrdwb = x ...