`
百合不是茶
  • 浏览: 354729 次
社区版块
存档分类
最新评论

意图对象传递数据

阅读更多

学习意图将数据传递给目标活动; 初学者需要好好研究的

  

   1,将下面的代码添加到main.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" >
    
    <Button
    android:id="@+id/btn_SecondActivity"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Click to go to Second Activity"
    android:onClick="onClick"
        />

</LinearLayout>

 

 2,将下面的代码添加到second.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="fill_parent"
        android:layout_height="wrap_content"
        android:text="Welcom 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 mian activity"
        android:onClick="onClick"
        />

</LinearLayout>

 

3,在src中创建信的class文件mainBundle.java 

  

package com.example.listener;

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

/**
 * 
 * @author Administrator 意图返回值的使用联系 返回码,结果码, Bundle对象传递数据
 */
public class mainBundle extends Activity {
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
	}

	// 按钮监听器
	public void onClick(View v) {
		// 意图传递参数
		Intent intent = new Intent();
		intent.setAction("com.example.listenersecondBundle");
		intent.putExtra("str1", "This is a String");
		intent.putExtra("agel", 25);

		// 使用Bundle对象来传递参数
		Bundle bundle = new Bundle();
		bundle.putString("str2", "This is a Bundle");
		bundle.putInt("age2", 35);
		intent.putExtras(bundle);// 将bundle对象放入意图中

		startActivityForResult(intent, 1);// 启动意图返回码为1
	}

	@Override
	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
		// TODO Auto-generated method stub
		super.onActivityResult(requestCode, resultCode, data);
		if (requestCode == 1 && 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();
		}
	}
}

 

4,src中创建一个新的class文件  secondBundle 

package com.example.listener;

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

/**
 * 
 * @author Administrator
 * 
 */
public class secondBundle extends Activity {
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);

		setContentView(R.layout.second);
		Toast.makeText(this, getIntent().getStringExtra("str1"),
				Toast.LENGTH_SHORT).show();

		Toast.makeText(this,
				Integer.toString(getIntent().getIntExtra("age1", 0)),
				Toast.LENGTH_SHORT).show();

		Bundle bundle = getIntent().getExtras();// 意图对象
		
		Toast.makeText(this, bundle.getString("str2"), Toast.LENGTH_SHORT)
				.show();

		Toast.makeText(this, Integer.toString(bundle.getInt("age2")),
				Toast.LENGTH_SHORT).show();

	}

	// 按钮监听器
	public void onClick(View v) {
		Intent intent = new Intent();
		intent.putExtra("age3", 45);
		intent.setData(Uri.parse("返回的值"));
		setResult(RESULT_OK, intent);
		finish();
	}
}

 

   5,在AndroidManifest.xml中添加下面代码;

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.listener"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <uses-permission  android:name="android.permission.CALL_PHONE" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.listener.mainBundle"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
         <activity
            android:name=".secondBundle"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.example.listenersecondBundle" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        
        <!--  
        <activity 
            android:name=".SecondActivity"> 
            <intent-filter>
                <action android:name="com.newer.baihe"/>
                
               <category android:name="android.intent.category.DEFAULT" />
               <category android:name="com.baihe.aaa" />
               <category android:name="com.baihe.bbb" />
               <category android:name="com.baihe.ccc" />
                  
               <data 
                   android:scheme="baihe"
                   android:host="baidu.com"
                   android:path="/index.html"
                   android:mimeType="text/*"
                   />
            </intent-filter>
            </activity> 
            -->
    </application>

</manifest>

 

6,代码分析;

   

  1), Intent方法添加数据,使用键值对 putExtra()方法

   intent.putExtra("str1","This is a String");

   intent.putExtra("age1",25);

 

  2),除了使用putExtra()方法,还可以创建一个Bundle对象,并使用putExtras将Bundle对象添加给Intent对象

  Bundle bundle = new Bundle();

   bundle.putString("str2","This is a Bundle");

    bundle.putInt("age2",35);

    intent.putExtras(bundle);

 

3),在活动中,为了获得Intent对象发送的数据,使用getIntent()来获取Intent对象,然后再使用getStringExtra获取发送的字符串,获取int型数据

获取字符串;

   Toast.makeText(this,getIntent().getStringExtra("str1"),Toast.LENGTH_SHORT).show();

 获取数字 

 Toast.makeText(this,Integer.toString(getIntent().getIntExtra("age1",0)),Toast.LENGTH_SHORT).show();

 

4),为了获取Bundle数据需要使用getExtras()方法

   Bundle bundle= getIntent().getExtras();

 

    根据不同的数据类型来获取数据,字符串使用toString获取,

      Toast.makeText(this, bundle.getString("str2"), Toast.LENGTH_SHORT).show();

 

 类似,使用getInt()方法获取整数值

   Toast.makeText(this,Integer.tostring(( bundle.getInt("age2")), Toast.LENGTH_SHORT).show();

 

5), 最后一种就是使用setData()方法传递数据;

  传递数据

    intent.setData(Uri.parse("返回的值"));

 获取数据

   Toast.makeText(this, data.getData().toString(), Toast.LENGTH_SHORT).show();

 

2
5
分享到:
评论

相关推荐

    Android学习笔记(十二)——使用意图传递数据的几种方式

    本篇笔记将详细探讨Android中使用意图传递数据的几种方式,帮助开发者深入理解这一核心概念。 1. **基本数据类型传递** 对于简单的数据类型,如字符串(String)、整型(int)、浮点型(float)等,可以直接通过Intent的...

    android使用意图传递数据ppt和源码

    本资料包包含了关于“Android使用意图传递数据”的PPT教程以及源码示例,旨在帮助开发者深入理解和实践这一核心概念。 1. **意图(Intent)基础** - 意图是一种消息传递机制,用于启动另一个组件或通信。 - 分为...

    利用隐式意图实现两个apk之间的数据传递

    在两个apk间传递数据时,由于目标组件可能在不同的应用中,因此通常采用隐式意图。 首先,我们需要在发送数据的apk中创建隐式意图。这涉及到以下步骤: 1. **定义意图**: 创建一个Intent对象,并设置行动、数据、...

    Android通过Intent传递数据

    "Android通过Intent传递数据"这一主题,涵盖了Intent的基本使用和数据传递的方式。 Intent分为显式Intent和隐式Intent。显式Intent明确指定要启动的目标组件,而隐式Intent则不指定具体接收者,而是根据Intent的...

    【Intent传递】对象、数组

    在Android应用开发中,Intent是连接各个组件(如Activity、Service、BroadcastReceiver)的重要桥梁,用于传递数据和启动意图。本DEMO主要讲解如何通过Intent传递对象和数组,这些都是Android开发中的基础知识,对于...

    apk与apk之间传递数据

    本教程将详细介绍如何利用隐式意图在两个APK之间传递数据,以实现更灵活的应用交互。 首先,理解Intent的种类。Intent分为显式Intent和隐式Intent。显式Intent明确指定了要启动的目标组件,通常用于在同一应用内部...

    借助Intent实现Android工程中Activity之间Java对象的传递.zip

    在Android应用开发中,Intent是连接应用程序组件的重要桥梁,它被用来启动新的Activity或Service,也可以用来在组件间传递数据。本教程将深入探讨如何利用Intent实现Activity之间的Java对象传递。 首先,理解Intent...

    Android 数据传递(Intent、Bundle、Serializable、Parcelable等)

    - 启动新的Activity,通过setAction(), setFlags()等方法设置操作,通过putExtra()传递数据。 - 启动或绑定Service,同样可以携带数据。 - 发送Broadcast,通过BroadcastReceiver接收并处理数据。 **Bundle的使用...

    intent传递自定义对象

    在Android应用开发中,Intent是连接各个组件(如Activity、Service等)的重要桥梁,它用于在组件间传递数据和启动意图。当我们需要在Intent中传递自定义对象时,Android提供了几种方式来实现这一功能,其中一种常用...

    Activity传递数据

    Intent是Android系统中用来启动一个Activity或Service的意图对象,它也可以用来传递数据。通过在Intent中附加额外的数据,我们可以实现Activity之间的数据传递。 1. **通过putExtra()和getExtra()方法**:Intent...

    Activity数据传递案例代码

    在这个过程中,Intent扮演着至关重要的角色,它充当了不同Ac­tiv­i­ty之间的信使,负责传递数据和启动其他Ac­tiv­i­ty。下面将详细阐述Android中如何利用Intent进行数据传递。 首先,Intent是一种意图声明,...

    033集-通过Intent传递数据

    本节033集的视频教材主要聚焦于通过Intent来传递数据这一核心概念。 1. **Intent的基本概念**: Intent是Android系统中的一个对象,它封装了应用程序的意图,即表达开发者想要执行的操作。Intent分为显式Intent和...

    数据传递之Intent

    在Android应用开发中,Intent是一种强大的机制,用于在组件之间传递数据和启动操作。Intent不仅可以用来启动活动(Activity)、服务(Service),还可以用于广播接收器(Broadcast Receiver)之间的通信。本教程将...

    Xamarin.Android之Intent传递对象简单实例

    在Android应用开发中,Intent是一种强大的机制,用于在不同的组件之间进行通信,如活动(Activity)、服务(Service)以及广播...通过学习和实践这个实例,你将更深入地理解Xamarin.Android中的Intent对象传递机制。

    【Intent传递】对象、数组 DEMO

    在Android应用开发中,Intent是连接各个组件(如Activity、Service等)的重要纽带,它用于在组件间传递数据。本DEMO重点展示了如何通过Intent来传递对象和数组,这是一个非常实用且常见的技能点。下面我们将深入探讨...

    手机P2P模式传递数据

    **Android NFC手机P2P模式传递数据详解** NFC(Near Field Communication)即近场通信技术,是一种短距离的高频无线通信技术,允许电子设备之间进行非接触式点对点数据传输。在Android系统中,NFC功能被广泛应用,...

    Android使用意图传递数据PPT与源码.zip

    本资源"Android使用意图传递数据PPT与源码.zip"包含了关于如何在Android中通过Intent传递数据的详细讲解和实际操作示例。 首先,我们要理解Intent的基本概念。Intent是一种消息对象,它封装了应用执行的操作以及所...

    Android-Android界面跳转传递参数封装

    - Intent是一个意图对象,用于表示应用中一个动作的意图,如启动一个新的Activity或Service。 - 使用`new Intent(context, DestinationActivity.class)`创建一个Intent实例,其中`context`是当前的上下文,`...

    Androidstudio实现页面跳转和传递参数

    Android提供了多种传递数据的方式,如Intent extras、Parcelable、Serializable等。这里我们将重点介绍使用Intent extras和Bundle。Intent extras允许我们在Intent中添加额外的数据,而Bundle则是一个轻量级的数据...

Global site tag (gtag.js) - Google Analytics