2.3 使用intent对象传递数据

除了从intent返回数据之外,也经长需要传递数据给activity。
创建一个android项目:PassingData
在activity_main.xml中添加:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Click to go to Second Activity "
        android:onClick="onClick" />

</RelativeLayout>

在res/layout中,新建xml文件命名为:secondactivity.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Welcome to second activity" />
    <Button
        android:id="@+id/btn_MainActivity"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Click to return to main activity" 
        android:onClick="onClick"/>
</LinearLayout>

在包中添加一个新的class文件。命名为SecondActivity:

package net.learn2develop.passingdata;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

public class SecondActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.secondactivity);
        //使用getIntent()方法获取该Intent对象,再调用getStringExtra()获取使用putExtra()方法设置的字符串值
        Toast.makeText(this, getIntent().getStringExtra("str1"), Toast.LENGTH_SHORT).show();
        //使用getIntExtra()获取int值
        Toast.makeText(this, Integer.toString(getIntent().getIntExtra("age1", 0)), Toast.LENGTH_SHORT).show();
        //为了回去Bundle对象需要使用getExtras()方法
        Bundle bundle=getIntent().getExtras();
        //使用getString()获取字符串值
        Toast.makeText(this, bundle.getString("str2"), Toast.LENGTH_SHORT).show();
        //使用getInt()方法获取整数值
        Toast.makeText(this, Integer.toString(bundle.getInt("age2")), Toast.LENGTH_SHORT).show();
    }
    public void onClick(View v){
        //使用intent对象返回数据
        Intent i=new Intent();
        //使用putExtra()方法返回某个值
        i.putExtra("age3", "45");
        //为了使被调用活动可以返回一个值给调用它的activity可以通过setData()方法使用一个Intent对象来传递数据
        i.setData(Uri.parse("Something passed back to main activity"));
        //setResult()方法设置了一个结果码(RESULT_OK或RESULT_CANCELLED)和回传给调用活动的数据(一个intent对象)
        setResult(RESULT_OK, i);
        //销毁当前activity
        finish();
    }
}

在MainActivity中:

package net.learn2develop.passingdata;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    public void onClick(View v){
        /**activity中传递数据的方法:使用Intent对象的putExtra()方法添加一个键值对
         * 还可以创建一个bundle对象,并使用putExtras()方法将Bundle对象添加给Intent对象*/
        Intent i=new Intent("net.learn2develop.passingdata.SecindActivity");
        //使用purExtra()方法添加新的 name/value
        i.putExtra("str1", "this is a String");
        i.putExtra("age1", 25);
        //使用Bundle对象添加name/value
        Bundle extras=new Bundle();
        extras.putString("str2", "This is another string");
        extras.putInt("age2", 35);
        //把Bundle对象添加到intent对象
        i.putExtras(extras);
        //启动activity获得返回结果
        startActivityForResult(i, 1);
    }
    //在调用者activity中,需要实现onActivityResult()方法,一个activity无论何时返回都要调用这份个方法
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if(requestCode==1){
            if (resultCode==RESULT_OK) {
                Toast.makeText(this, Integer.toString(data.getIntExtra("age3", 0)), Toast.LENGTH_SHORT).show();
                Toast.makeText(this, data.getData().toString(), Toast.LENGTH_SHORT).show();
            }
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值