本文主要是介绍Intent的用法(一),启动activity传递数据以及startActivityForResult .,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Intent很神奇.可以用Intent来启动新的Activity,启动广播,启动服务,发送数据........太多了.
这里介绍下,使用Intent启动新的Activity,传递数据,以及startActivityForResult()方法的使用.
我们这里有两个Activity,MainActivity.java和OtherActivity.java. 我们需要做的是,点击Button的时候,获取到MainActivity中的用户输入的数据,传递给OtherActivity,在OtherActivity上进行整合后,在传递给MainActivity进行显示.
先看效果如,也就是整个流程:
第一步 从MainActivity跳转到OtherActivity,并将输入的数据传递过去.
代码如下:
- // 将Intent初始化 Intent(packageContext, cls)
- // packageContext指的是当前Activity
- // cls指的是目标Activity
- intent = new Intent(MainActivity.this, OtherActivity.class);
- // 创建Bundle对象用来存放数据,Bundle对象可以理解为数据的载体
- Bundle b = new Bundle();
- // 调用Bundle对象的putString方法,采用 key-value的形式保存数据
- b.putString("name", name.getText().toString());
- b.putString("age", age.getText().toString());
- // 将数据载体BUndle对象放入Intent对象中.
- intent.putExtras(b);
- // 调用startActivityForResult方法
- // startActivityForResult(intent,requestCode);
- // intent,数据载体
- // requestCode 请求的Code,这里一般 大于等于0的整型数据就可以.
- startActivityForResult(intent, 1);
// 将Intent初始化 Intent(packageContext, cls)
// packageContext指的是当前Activity
// cls指的是目标Activity
intent = new Intent(MainActivity.this, OtherActivity.class);
// 创建Bundle对象用来存放数据,Bundle对象可以理解为数据的载体
Bundle b = new Bundle();
// 调用Bundle对象的putString方法,采用 key-value的形式保存数据
b.putString("name", name.getText().toString());
b.putString("age", age.getText().toString());
// 将数据载体BUndle对象放入Intent对象中.
intent.putExtras(b);
// 调用startActivityForResult方法
// startActivityForResult(intent,requestCode);
// intent,数据载体
// requestCode 请求的Code,这里一般 大于等于0的整型数据就可以.
startActivityForResult(intent, 1);
注释已经比较详细了,这里值得一提的是,由于需要OtherActivity返回数据,所以采用了startActivityForResult()的方法,如果不需要返回数据,而是单纯的启动Activity,只需要使用tartActivity();就可以了.
第二步,OtherActivity接收数据,核心代码如下:
- // 获取数据
- mIntent = getIntent();
- Bundle b = mIntent.getExtras();
- // 加载到tv
- tv.setText("输入的姓名是:" + b.getString("name") + "输入的年龄是:"
- + b.getString("age"));
// 获取数据
mIntent = getIntent();
Bundle b = mIntent.getExtras();
// 加载到tv
tv.setText("输入的姓名是:" + b.getString("name") + "输入的年龄是:"
+ b.getString("age"));
这里创建一个Bundle对象后,调用getString方法,根据先前设置的key而获取到数据.
第三步,返回数据,这一步可以分为两个部分:
OtherActivity将需要返回的数据封装,代码如下:
- mIntent = new Intent(OtherActivity.this, MainActivity.class);
- Bundle b = new Bundle();
- b.putString("data", tv.getText().toString());
- mIntent.putExtras(b);
- this.setResult(RESULT_OK, mIntent);
- OtherActivity.this.finish();
mIntent = new Intent(OtherActivity.this, MainActivity.class);
Bundle b = new Bundle();
b.putString("data", tv.getText().toString());
mIntent.putExtras(b);
this.setResult(RESULT_OK, mIntent);
OtherActivity.this.finish();
这里的setResult方法setResult(resultCode, data); resultCode,我们采用了系统提供的RESULT_OK,它的作用是用来识别Intent的.具体作用,在MainActivity的代码看完后,就明白了.还需要指出的是,setResult()之后,一定要调用当前Activity的finish()方法,如果不调用finish()方法,回报什么错呢?其实最好是亲自试一下.如果不finish(),点击"返回"按钮的时候,并没有执行跳转.这一点很重要.
MainActivity需要进行的处理,接收到数据后,将数据显示在TextView中,代码如下:
- // 需要接收上一个Activity返回的数据,要重写Activity的 onActivityResult()方法.
- @Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- // TODO Auto-generated method stub
- // 依据resultCode进行接收,这也是上个界面中需要设置resultCode的原因了
- switch (resultCode) {
- case RESULT_OK:
- // 这里写的比较省略,完整的写法应该是:
- // Bundle b = data.getExtras();
- // String show_string = b.getString("data");
- // show.setText(show_string);
- show.setText(data.getExtras().getString("data"));
- break;
- default:
- break;
- }
- super.onActivityResult(requestCode, resultCode, data);
- }
// 需要接收上一个Activity返回的数据,要重写Activity的 onActivityResult()方法.
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
// 依据resultCode进行接收,这也是上个界面中需要设置resultCode的原因了
switch (resultCode) {
case RESULT_OK:
// 这里写的比较省略,完整的写法应该是:
// Bundle b = data.getExtras();
// String show_string = b.getString("data");
// show.setText(show_string);
show.setText(data.getExtras().getString("data"));
break;
default:
break;
}
super.onActivityResult(requestCode, resultCode, data);
}
以上是各个模块的核心代码.
接下来贴出来所有文件的源码.
两个xml文件:
mian.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello" />
- <EditText
- android:id="@+id/name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="输入姓名" >
- <requestFocus />
- </EditText>
- <EditText
- android:id="@+id/age"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="输入年龄" />
- <Button
- android:id="@+id/button1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="启动Intent,传递数据,接收数据" />
- <TextView
- android:id="@+id/show"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="显示整合好的数据"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- </LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<EditText
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="输入姓名" >
<requestFocus />
</EditText>
<EditText
android:id="@+id/age"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="输入年龄" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="启动Intent,传递数据,接收数据" />
<TextView
android:id="@+id/show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="显示整合好的数据"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
other.xml
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/linearLayout1"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/textView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Large Text"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- <Button
- android:id="@+id/button1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="返回" />
- </LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="返回" />
</LinearLayout>
两个Activity的文件:
MainActivity.java
- package com.yongchun.intent.ui;
- /*
- * public Bundle() {
- * mMap = new HashMap<String, Object>();
- * mClassLoader = getClass().getClassLoader();
- * }
- * Bundle的构造方法中,初始化了一个Map,实际上Bundle就是Map的进一步的封装,
- * Bundle实际上采用的就是Map来保存数据
- *
- * #####################################################
- *
- * public Intent putExtra(String name, boolean value) {
- * if (mExtras == null) {
- * mExtras = new Bundle();
- * }
- * mExtras.putBoolean(name, value);
- * return this;
- * }
- *
- * Intent的putExtra方法中,实际上也是创建了一个Bundle对象.
- * 两种方式是一样的,换汤不换药.
- * */
- import java.util.HashMap;
- import android.app.Activity;
- import android.content.Context;
- import android.content.Intent;
- import android.os.Bundle;
- import android.text.style.UpdateLayout;
- import android.util.Log;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.EditText;
- import android.widget.TextView;
- public class MainActivity extends Activity implements OnClickListener {
- /** Called when the activity is first created. */
- private Button startButton;
- private EditText name, age;
- private TextView show;
- private Intent intent;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- // 获取引用
- startButton = (Button) findViewById(R.id.button1);
- startButton.setOnClickListener(this);
- name = (EditText) findViewById(R.id.name);
- age = (EditText) findViewById(R.id.age);
- show = (TextView) findViewById(R.id.show);
- }
- public void onClick(View v) {
- // TODO Auto-generated method stub
- switch (v.getId()) {
- case R.id.button1:
- // 将Intent初始化 Intent(packageContext, cls)
- // packageContext指的是当前Activity
- // cls指的是目标Activity
- intent = new Intent(MainActivity.this, OtherActivity.class);
- // 创建Bundle对象用来存放数据,Bundle对象可以理解为数据的载体
- Bundle b = new Bundle();
- // 调用Bundle对象的putString方法,采用 key-value的形式保存数据
- b.putString("name", name.getText().toString());
- b.putString("age", age.getText().toString());
- // 将数据载体BUndle对象放入Intent对象中.
- intent.putExtras(b);
- // 调用startActivityForResult方法
- // startActivityForResult(intent,requestCode);
- // intent,数据载体
- // requestCode 请求的Code,这里一般 大于等于0的整型数据就可以.
- startActivityForResult(intent, 1);
- break;
- default:
- break;
- }
- }
- // 需要接收上一个Activity返回的数据,要重写Activity的 onActivityResult()方法.
- @Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- // TODO Auto-generated method stub
- // 依据resultCode进行接收,这也是上个界面中需要设置resultCode的原因了
- switch (resultCode) {
- case RESULT_OK:
- // 这里写的比较省略,完整的写法应该是:
- // Bundle b = data.getExtras();
- // String show_string = b.getString("data");
- // show.setText(show_string);
- show.setText(data.getExtras().getString("data"));
- break;
- default:
- break;
- }
- super.onActivityResult(requestCode, resultCode, data);
- }
- }
package com.yongchun.intent.ui;
/*
* public Bundle() {
* mMap = new HashMap<String, Object>();
* mClassLoader = getClass().getClassLoader();
* }
* Bundle的构造方法中,初始化了一个Map,实际上Bundle就是Map的进一步的封装,
* Bundle实际上采用的就是Map来保存数据
*
* #####################################################
*
* public Intent putExtra(String name, boolean value) {
* if (mExtras == null) {
* mExtras = new Bundle();
* }
* mExtras.putBoolean(name, value);
* return this;
* }
*
* Intent的putExtra方法中,实际上也是创建了一个Bundle对象.
* 两种方式是一样的,换汤不换药.
* */
import java.util.HashMap;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.text.style.UpdateLayout;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends Activity implements OnClickListener {
/** Called when the activity is first created. */
private Button startButton;
private EditText name, age;
private TextView show;
private Intent intent;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// 获取引用
startButton = (Button) findViewById(R.id.button1);
startButton.setOnClickListener(this);
name = (EditText) findViewById(R.id.name);
age = (EditText) findViewById(R.id.age);
show = (TextView) findViewById(R.id.show);
}
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.button1:
// 将Intent初始化 Intent(packageContext, cls)
// packageContext指的是当前Activity
// cls指的是目标Activity
intent = new Intent(MainActivity.this, OtherActivity.class);
// 创建Bundle对象用来存放数据,Bundle对象可以理解为数据的载体
Bundle b = new Bundle();
// 调用Bundle对象的putString方法,采用 key-value的形式保存数据
b.putString("name", name.getText().toString());
b.putString("age", age.getText().toString());
// 将数据载体BUndle对象放入Intent对象中.
intent.putExtras(b);
// 调用startActivityForResult方法
// startActivityForResult(intent,requestCode);
// intent,数据载体
// requestCode 请求的Code,这里一般 大于等于0的整型数据就可以.
startActivityForResult(intent, 1);
break;
default:
break;
}
}
// 需要接收上一个Activity返回的数据,要重写Activity的 onActivityResult()方法.
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
// 依据resultCode进行接收,这也是上个界面中需要设置resultCode的原因了
switch (resultCode) {
case RESULT_OK:
// 这里写的比较省略,完整的写法应该是:
// Bundle b = data.getExtras();
// String show_string = b.getString("data");
// show.setText(show_string);
show.setText(data.getExtras().getString("data"));
break;
default:
break;
}
super.onActivityResult(requestCode, resultCode, data);
}
}
OtherActivity.java
- package com.yongchun.intent.ui;
- import android.app.Activity;
- import android.content.Intent;
- import android.os.Bundle;
- import android.util.Log;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.TextView;
- public class OtherActivity extends Activity implements OnClickListener {
- private TextView tv;
- private Button OK;
- private Intent mIntent;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- // TODO Auto-generated method stub
- super.onCreate(savedInstanceState);
- setContentView(R.layout.other);
- // 获取引用
- tv = (TextView) findViewById(R.id.textView1);
- OK = (Button) findViewById(R.id.button1);
- OK.setOnClickListener(this);
- // 获取数据
- mIntent = getIntent();
- Bundle b = mIntent.getExtras();
- // 加载到tv
- tv.setText("输入的姓名是:" + b.getString("name") + "输入的年龄是:"
- + b.getString("age"));
- }
- public void onClick(View v) {
- // TODO Auto-generated method stub
- switch (v.getId()) {
- case R.id.button1:
- mIntent = new Intent(OtherActivity.this, MainActivity.class);
- Bundle b = new Bundle();
- b.putString("data", tv.getText().toString());
- mIntent.putExtras(b);
- this.setResult(RESULT_OK, mIntent);
- OtherActivity.this.finish();
- break;
- default:
- break;
- }
- }
- }
package com.yongchun.intent.ui;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
/**
* 作者:肥鱼 QQ群:104780991 Email:zhaoyongchun2011@gmail.com
* 关于:一条致力于Android开源事业的鱼,还是肥的.吃得多赚的少还不会暖床,求包养.
*/
public class OtherActivity extends Activity implements OnClickListener {
private TextView tv;
private Button OK;
private Intent mIntent;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.other);
// 获取引用
tv = (TextView) findViewById(R.id.textView1);
OK = (Button) findViewById(R.id.button1);
OK.setOnClickListener(this);
// 获取数据
mIntent = getIntent();
Bundle b = mIntent.getExtras();
// 加载到tv
tv.setText("输入的姓名是:" + b.getString("name") + "输入的年龄是:"
+ b.getString("age"));
}
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.button1:
mIntent = new Intent(OtherActivity.this, MainActivity.class);
Bundle b = new Bundle();
b.putString("data", tv.getText().toString());
mIntent.putExtras(b);
this.setResult(RESULT_OK, mIntent);
OtherActivity.this.finish();
break;
default:
break;
}
}
}
在MainActivity.java的开头处有一大段注释,说的是Bundle保存数据的机制以及使用Intent对象的putString方法保存数据的机制.Bundle实际上就是对Map的进一步的封装.而是用Intent对象的putString方法时,实际上还是创建了一个Bundle对象.我们来看一下Bundle类中的构造函数:
- public Bundle() {
- mMap = new HashMap<String, Object>();
- mClassLoader = getClass().getClassLoader();
- }
public Bundle() {
mMap = new HashMap<String, Object>();
mClassLoader = getClass().getClassLoader();
}
很明显,实际上就是初始化了HashMap.
我们再看一下Intent类中某个putExtra()的方法.
- public Intent putExtra(String name, char value) {
- if (mExtras == null) {
- mExtras = new Bundle();
- }
- mExtras.putChar(name, value);
- return this;
- }
public Intent putExtra(String name, char value) {
if (mExtras == null) {
mExtras = new Bundle();
}
mExtras.putChar(name, value);
return this;
}
这篇关于Intent的用法(一),启动activity传递数据以及startActivityForResult .的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!