`

Android Activity/Service Intent 通信 跳转

阅读更多

第一种方式,用action来跳转。

1、使用Action跳转,如果有一个程序的AndroidManifest.xml中的某一个Activity的IntentFilter段中定义了包 含了相同的Action那么这个Intent就与这个目标Action匹配。如果这个IntentFilter段中没有定义 Type,Category,那么这个 Activity就匹配了。但是如果手机中有两个以上的程序匹配,那么就会弹出一个对话可框来提示说明。
Action的值在Android中有很多预定义,如果你想直接转到你自己定义的Intent接收者,你可以在接收者的 IntentFilter中加入一个自定义的Action值(同时要设定 Category值为"android.intent.category.DEFAULT"),在你的Intent中设定该值为Intent的 Action,就直接能跳转到你自己的Intent接收者中。因为这个Action在系统中是唯一的。

2,data/type,你可以用Uri来做为data,比如Uri uri = Uri.parse(http://www.google.com );
Intent i = new Intent(Intent.ACTION_VIEW,uri);手机的Intent分发过程中,会根据http://www.google.com 的scheme判断出数据类型type
手机的Brower则能匹配它,在Brower的Manifest.xml中的IntenFilter中首先有ACTION_VIEW Action,也能处理http:的type。

3,至于分类Category,一般不要去在Intent中设置它,如果你写Intent的接收者,就在Manifest.xml的Activity的 IntentFilter中包含android.category.DEFAULT,这样所有不设置 Category(Intent.addCategory(String c);)的Intent都会与这个Category匹配。

4,extras(附加信息),是其它所有附加信息的集合。使用extras可以为组件提供扩展信息,比如,如果要执行“发送电子邮件”这个动作,可以将电子邮件的标题、正文等保存在extras里,传给电子邮件发送组件。

Java代码

  1. package com.android.edit_text;
  2. import android.app.Activity;
  3. import android.content.Intent;
  4. import android.os.Bundle;
  5. import android.view.KeyEvent;
  6. import android.view.View;
  7. import android.widget.EditText;
  8. public class MyEditText extends Activity {
  9. private TextView m_TextView;
  10. private EditText m_EditText;
  11. /** Called when the activity is first created. */
  12. @Override
  13. public void onCreate(Bundle savedInstanceState) {
  14.        super.onCreate(savedInstanceState);
  15.        setContentView(R.layout.main);
  16.        m_EditText = (EditText) this.findViewById(R.id.EditText01);
  17.        m_EditText.setOnKeyListener(editTextKeyListener);
  18. }
  19. private EditText.OnKeyListener editTextKeyListener = new EditText.OnKeyListener() {
  20.        @Override
  21.        public boolean onKey(View arg0, int arg1, KeyEvent arg2) {
  22.       
  23.                      // action跳转,需要在AndroidManifest.xml中配置action
  24.          Intent i = new Intent("android.intent.action.mydialog");
  25.          MyEditText.this.startActivity(i);
  26.         
  27.          return false;
  28.        }
  29. };
  30. }
复制代码

Xml代码

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.android.edit_text" android:versionCode="1"
  4. android:versionName="1.0">
  5. <application android:icon="@drawable/icon" android:label="@string/app_name">
  6.        <activity android:name=".MyEditText" android:label="@string/app_name">
  7.          <intent-filter>
  8.             <action android:name="android.intent.action.MAIN" />
  9.             <category android:name="android.intent.category.LAUNCHER" />
  10.          </intent-filter>
  11.        </activity>
  12.             <!--配置跳转activity-->
  13.        <activity android:name="com.android.dialog.MyDialog">
  14.          <intent-filter>
  15. <!--配置action路径-->
  16.             <action android:name="android.intent.action.mydialog" />
  17.             <category android:name="android.intent.category.DEFAULT" />
  18.          </intent-filter>
  19.        </activity>
  20. </application>
  21. <uses-sdk android:minSdkVersion="7" />
  22. </manifest>
复制代码

第二种方式,用类名跳转。

Intent负责对应用中一次操作的动作、动作涉及数据、附加数据进行描述,Android则根据此Intent的描述, 负责找到对应的组件,将 Intent传递给调用的组件,并完成组件的调用。Intent在这里起着实现调用者与被调用者之间的解耦作用。
Intent传递过程中,要找到目标消费者(另一个Activity,IntentReceiver或Service),也就是Intent的响应者。

Java代码

  1. package com.Android;
  2. import android.app.Activity;
  3. import android.content.Intent;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.view.View.OnClickListener;
  7. public class FormStuff extends Activity {
  8. @Override
  9. public void onCreate(Bundle savedInstanceState) {
  10.        super.onCreate(savedInstanceState);
  11.        setContentView(R.layout.formstuff);
  12.        final ImageButton button = (ImageButton) findViewById(R.id.android_button);
  13.        button.setOnClickListener(new OnClickListener() {
  14.          public void onClick(View v) {
  15. // 用类名跳转,需要在AndroidManifest.xml中申明activity
  16.             Intent intent = new Intent(FormStuff.this, HelloTabWidget.class);
  17.             startActivity(intent);
  18.          }
  19.        });
  20. }
复制代码

Xml代码

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.Android" android:versionCode="1" android:versionName="1.0">
  4. <application android:icon="@drawable/icon" android:theme="@android:style/Theme.NoTitleBar">
  5.        <activity android:name=".FormStuff" android:label="@string/app_name">
  6.          <intent-filter>
  7.             <action android:name="android.intent.action.MAIN" />
  8.             <category android:name="android.intent.category.LAUNCHER" />
  9.          </intent-filter>
  10.        </activity>
  11.        <!--申明activity-->
  12. <activity android:name="HelloTabWidget"></activity>
  13. </application>
  14. <uses-sdk android:minSdkVersion="4" />
  15. </manifest>
复制代码

一些Intent的常用发:

Java代码

  1. 显示网页
  2. 1. Uri uri = Uri.parse("http://google.com");
  3. 2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  4. 3. startActivity(it);
  5. 显示地图
  6. 1. Uri uri = Uri.parse("geo:38.899533,-77.036476");
  7. 2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  8. 3. startActivity(it);
  9. 4. //其他 geo URI 範例
  10. 5. //geo:latitude,longitude
  11. 6. //geo:latitude,longitude?z=zoom
  12. 7. //geo:0,0?q=my+street+address
  13. 8. //geo:0,0?q=business+near+city
  14. 9. //google.streetview:cbll=lat,lng&amp;cbp=1,yaw,,pitch,zoom&amp;mz=mapZoom  
  15. 路径规划
  16. 1. Uri uri = Uri.parse("http://maps.google.com/maps?f=d&amp;saddr=startLat%20startLng&amp;daddr=endLat%20endLng&amp;hl=en");
  17. 2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  18. 3. startActivity(it);
  19. 4. //where startLat, startLng, endLat, endLng are a long with 6 decimals like: 50.123456
  20. 打电话
  21. 1. //叫出拨号程序  
  22. 2. Uri uri = Uri.parse("tel:0800000123");
  23. 3. Intent it = new Intent(Intent.ACTION_DIAL, uri);
  24. 4. startActivity(it);
  25. 1. //直接打电话出去
  26. 2. Uri uri = Uri.parse("tel:0800000123");
  27. 3. Intent it = new Intent(Intent.ACTION_CALL, uri);
  28. 4. startActivity(it);
  29. 5. //用這个,要在 AndroidManifest.xml 中,加上
  30. 6. //&lt;uses-permission id="android.permission.CALL_PHONE" /&gt;
  31. 传送SMS/MMS
  32. 1. //调用短信程序  
  33. 2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  34. 3. it.putExtra("sms_body", "The SMS text");
  35. 4. it.setType("vnd.android-dir/mms-sms");
  36. 5. startActivity(it);  
  37. 1. //传送消息  
  38. 2. Uri uri = Uri.parse("smsto://0800000123");
  39. 3. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
  40. 4. it.putExtra("sms_body", "The SMS text");
  41. 5. startActivity(it);  
  42. 1. //传送 MMS
  43. 2. Uri uri = Uri.parse("content://media/external/images/media/23");
  44. 3. Intent it = new Intent(Intent.ACTION_SEND);
  45. 4. it.putExtra("sms_body", "some text");
  46. 5. it.putExtra(Intent.EXTRA_STREAM, uri);
  47. 6. it.setType("image/png");
  48. 7. startActivity(it);
  49. 传送 Email
  50. 1. Uri uri = Uri.parse("mailto:xxx@abc.com");
  51. 2. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
  52. 3. startActivity(it);
  53. 1. Intent it = new Intent(Intent.ACTION_SEND);
  54. 2. it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com");
  55. 3. it.putExtra(Intent.EXTRA_TEXT, "The email body text");
  56. 4. it.setType("text/plain");
  57. 5. startActivity(Intent.createChooser(it, "Choose Email Client"));
  58. 1. Intent it=new Intent(Intent.ACTION_SEND);    
  59. 2. String[] tos={"me@abc.com"};    
  60. 3. String[] ccs={"you@abc.com"};    
  61. 4. it.putExtra(Intent.EXTRA_EMAIL, tos);    
  62. 5. it.putExtra(Intent.EXTRA_CC, ccs);    
  63. 6. it.putExtra(Intent.EXTRA_TEXT, "The email body text");    
  64. 7. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");    
  65. 8. it.setType("message/rfc822");    
  66. 9. startActivity(Intent.createChooser(it, "Choose Email Client"));  
  67. 1. //传送附件
  68. 2. Intent it = new Intent(Intent.ACTION_SEND);
  69. 3. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
  70. 4. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");
  71. 5. sendIntent.setType("audio/mp3");
  72. 6. startActivity(Intent.createChooser(it, "Choose Email Client"));  
  73. 播放多媒体
  74.    Uri uri = Uri.parse("file:///sdcard/song.mp3");
  75.    Intent it = new Intent(Intent.ACTION_VIEW, uri);
  76.    it.setType("audio/mp3");
  77.    startActivity(it);  
  78.    Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");
  79.    Intent it = new Intent(Intent.ACTION_VIEW, uri);
  80.    startActivity(it);  
  81. Market 相关
  82. 1.        //寻找某个应用  
  83. 2.        Uri uri = Uri.parse("market://search?q=pname:pkg_name");  
  84. 3.        Intent it = new Intent(Intent.ACTION_VIEW, uri);
  85. 4.        startActivity(it);
  86. 5.        //where pkg_name is the full package path for an application  
  87. 1.        //显示某个应用的相关信息  
  88. 2.        Uri uri = Uri.parse("market://details?id=app_id");
  89. 3.        Intent it = new Intent(Intent.ACTION_VIEW, uri);  
  90. 4.        startActivity(it);
  91. 5.        //where app_id is the application ID, find the ID
  92. 6.        //by clicking on your application on Market home
  93. 7.        //page, and notice the ID from the address bar  
  94. Uninstall 应用程序
  95. 1.        Uri uri = Uri.fromParts("package", strPackageName, null);  
  96. 2.        Intent it = new Intent(Intent.ACTION_DELETE, uri);
  97. 3.        startActivity(it); 
分享到:
评论

相关推荐

    Android开发 两个Activity之间通过Intent跳转传值

    在Android应用开发中,Intent是连接应用程序组件的重要桥梁,它被用来启动新的Activity或Service,也可以传递数据。本文将深入探讨如何在两个Activity之间通过Intent进行数据传递。 首先,理解Intent的基本概念。...

    android intent 页面跳转

    在Android应用开发中,Intent是一种重要的组件间通信(IPC)机制,主要用于启动其他应用程序组件,如Activity、Service等。本文将深入探讨“Android Intent”在页面跳转和数据传递中的应用,结合“Chapter06_Intent_...

    Activity之间的Intent跳转

    综上所述,Intent在Android开发中起着核心作用,它不仅是Activity间跳转的手段,也是组件间通信的重要工具。熟练掌握Intent的使用,对于构建功能丰富的Android应用程序至关重要。通过上述知识点,开发者可以实现...

    Android程序间Intent跳转分析

    在Android开发中,Intent是一个至关重要的组件,它用于在应用程序之间传递消息,实现不同组件间的交互,如Activity、Service、BroadcastReceiver以及ContentProvider之间的通信。本文将深入探讨Android程序间Intent...

    android ,跳转到代码(intent)

    在Android四大组件(Activity、Service、BroadcastReceiver、ContentProvider)之间,Intent起到了启动和传递信息的作用。Intent分为显式Intent和隐式Intent两种类型: 1. 显式Intent:在创建Intent时明确指定了要...

    android的intent跳转

    在Android开发中,Intent是应用程序之间以及应用程序内部组件之间通信的主要机制。Intent可以用来启动新的活动(Activity)、启动服务(Service)或者传递消息。在这个场景中,我们将关注Intent如何用于在Android...

    Android:Intent&Activity,Service,BroadcastReceiver

    在Android应用开发中,Intent、Activity、Service以及BroadcastReceiver是四大核心组件,它们构成了Android应用程序的基本骨架。下面将详细介绍这四个关键概念。 1. **Intent(意图)**: Intent在Android中扮演着...

    android入门activity跳转源代码

    Intent在Android中充当了Activity间通信的信使,它表达了应用执行某项操作的意图。在进行Activity跳转时,我们通常创建一个Intent对象,并指定目标Activity的类名或Action。 1. 创建Intent对象: ```java Intent ...

    Android应用源码之(Activity跳转与操作).zip

    Activity跳转与操作是Android开发者必须掌握的关键技能,涉及到Intent、生命周期、数据传递等多个方面。本资源“Android应用源码之(Activity跳转与操作).zip”包含了关于这些主题的实例代码,下面将详细解释这些知识...

    intent 页面跳转

    Intent页面跳转是Android应用中常见的功能,通常涉及Activity之间的交互。在这个场景下,我们点击一个按钮,从第一个页面(Activity)跳转到第二个页面(Activity)。下面将详细解释Intent的工作原理以及如何实现...

    Android提高第四篇之Activity+Intent.docx

    在Android应用开发中,Activity和Intent是两个至关重要的概念,它们构成了Android应用程序的基本骨架。Activity作为用户界面的主要载体,Intent则是连接各个组件的桥梁,负责传递消息和启动操作。 Activity的生命...

    Android中使用显式Intent完成界面切换的任务说明.pdf

    在Android应用开发中,Intent是一种重要的组件间通信机制,它被用来启动新的活动(Activity)、服务(Service)或者传递数据。显式Intent是Intent的一种类型,主要用于明确指定要启动的目标组件。本篇将详细讲解如何...

    intent 跳转实现activity之间传参

    在Android应用开发中,Intent是连接应用程序组件的重要桥梁,它用于启动新的Activity或者Service,同时也可以在组件间传递数据。本篇文章将详细讲解如何通过Intent实现Activity之间的参数传递。 一、Intent的基本...

    Android应用源码之Intent.zip

    在Android应用开发中,Intent是一个至关重要的概念,它充当了应用程序组件之间通信的桥梁。Intent不仅用于启动新的活动(Activity)或服务(Service),还能在组件间传递数据。本资料"Android应用源码之Intent.zip...

    activity和fragment的生命周期以及intent跳转

    Intent是Android中用于组件间通信的一种方式,它可以用来启动一个新的Activity、Service等。 ##### Intent传递数据 - **Intent.putExtra()**:用于将数据附加到Intent对象中。 - **Intent.getExtra()**:用于从...

    Android Activity中使用Intent实现页面跳转与参数传递的方法

    总之,Intent在Android开发中扮演着至关重要的角色,它使得不同Activity之间的通信变得简单且灵活。了解如何正确使用Intent进行页面跳转和参数传递,对于编写高效、功能丰富的Android应用至关重要。通过上述实例,你...

    Intent_android

    在Android开发中,Intent是一个非常核心且至关重要的组件,它被用来在应用程序的不同组件之间进行通信,例如启动一个新的Activity或Service,传递数据等。Intent在Android系统中扮演着消息传递者的角色,使得应用的...

    Android studio实现简单的登录跳转源码

    4. **Intent**: Intent是Android中用于启动组件(如Activity、Service)的媒介。在登录按钮的点击事件处理函数中,你需要创建一个新的Intent对象,指定要跳转的目标Activity(这里是OtherActivity)。 5. **...

Global site tag (gtag.js) - Google Analytics