`
chenpeilei2003
  • 浏览: 191340 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

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 代码

package com.android.edit_text;  

import android.app.Activity;  

import android.content.Intent;  

import android.os.Bundle;  

import android.view.KeyEvent;  

import android.view.View;  

import android.widget.EditText;  

public class MyEditText extends Activity {  

    private TextView m_TextView;  

    private EditText m_EditText;  

      

    @Override  

    public void onCreate(Bundle savedInstanceState) {  

        super.onCreate(savedInstanceState);  

        setContentView(R.layout.main);  

        m_EditText = (EditText) this.findViewById(R.id.EditText01);  

        m_EditText.setOnKeyListener(editTextKeyListener);  

    }  

    private EditText.OnKeyListener editTextKeyListener = new EditText.OnKeyListener() {  

        @Override  

        public boolean onKey(View arg0, int arg1, KeyEvent arg2) {  

            // action 跳转,需要在AndroidManifest.xml中配置action  

            Intent i = new Intent("android.intent.action.mydialog");  

            MyEditText.this.startActivity(i);  

            return false;  

        }  

    };  

}  

Xml代 码

<?xml version="1.0" encoding="utf-8"?>  

<manifest xmlns:android="http://schemas.android.com/apk/res/android"  

    package="com.android.edit_text" android:versionCode="1"  

    android:versionName="1.0">  

    <application android:icon="@drawable/icon" android:label="@string/app_name">  

        <activity android:name=".MyEditText" 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-->  

        <activity android:name="com.android.dialog.MyDialog">  

            <intent-filter>  

    <!-- 配置action路径-->  

                <action android:name="android.intent.action.mydialog" />  

                <category android:name="android.intent.category.DEFAULT" />  

            </intent-filter>  

        </activity>  

    </application>  

    <uses-sdk android:minSdkVersion="7" />  

</manifest>   

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

  Intent负责对应用中一次操作的动作、动作涉及数据、附加数据进行描 述,Android则根据此Intent的描述, 负责找到对应的组件,将 Intent传递给调用的组件,并完成组件的调用。Intent在这里起着实现调用者与被调用者之间的解耦作用。

  Intent传递过程中,要找 到目标消费者(另一个Activity,IntentReceiver或Service),也就是Intent的响 应者。

Java 代码

package com.Android;  

import android.app.Activity;  

import android.content.Intent;  

import android.os.Bundle;  

import android.view.View;  

import android.view.View.OnClickListener;  

public class FormStuff extends Activity {  

    @Override  

    public void onCreate(Bundle savedInstanceState) {  

        super.onCreate(savedInstanceState);  

        setContentView(R.layout.formstuff);  

        final ImageButton button = (ImageButton) findViewById(R.id.android_button);  

        button.setOnClickListener(new OnClickListener() {  

            public void onClick(View v) {  

// 用 类名跳转,需要在AndroidManifest.xml中申明activity  

                Intent intent = new Intent(FormStuff.this, HelloTabWidget.class);  

                startActivity(intent);  

            }  

        });  

}  

Xml代 码

<?xml version="1.0" encoding="utf-8"?>  

<manifest xmlns:android="http://schemas.android.com/apk/res/android"  

    package="com.Android" android:versionCode="1" android:versionName="1.0">  

    <application android:icon="@drawable/icon" android:theme="@android:style/Theme.NoTitleBar">  

        <activity android:name=".FormStuff" 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-->  

    <activity android:name="HelloTabWidget"></activity>  

</application>  

    <uses-sdk android:minSdkVersion="4" />  

</manifest>   

 

下面列出几种Intent的用法

显示网页:

Uri uri = Uri.parse("http://www.google.com");

Intent it   = new Intent(Intent.ACTION_VIEW,uri);

startActivity(it);

显示地图:

Uri uri = Uri.parse("geo:38.899533,-77.036476");

Intent it = new Intent(Intent.Action_VIEW,uri);

startActivity(it);

路径规划:

Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat startLng&daddr=endLat endLng&hl=en");

Intent it = new Intent(Intent.ACTION_VIEW,URI);

startActivity(it);

拨打电话:

调用拨号程序

Uri uri = Uri.parse("tel:xxxxxx");

Intent it = new Intent(Intent.ACTION_DIAL, uri);  

startActivity(it);  

Uri uri = Uri.parse("tel.xxxxxx");

Intent it =new Intent(Intent.ACTION_CALL,uri);

要使用这个必须在配置文件中加入<uses-permission id="android.permission.CALL_PHONE" />

发送SMS/MMS

调用发送短信的程序

Intent it = new Intent(Intent.ACTION_VIEW);

it.putExtra("sms_body", "The SMS text");

it.setType("vnd.android-dir/mms-sms");

startActivity(it);  

发送短信

Uri uri = Uri.parse("smsto:0800000123");

Intent it = new Intent(Intent.ACTION_SENDTO, uri);

it.putExtra("sms_body", "The SMS text");

startActivity(it);  

发送彩信

Uri uri = Uri.parse("content://media/external/images/media/23");

Intent it = new Intent(Intent.ACTION_SEND);

it.putExtra("sms_body", "some text");

it.putExtra(Intent.EXTRA_STREAM, uri);

it.setType("image/png");

startActivity(it);

发送Email

Uri uri = Uri.parse("mailto:xxx@abc.com");

Intent it = new Intent(Intent.ACTION_SENDTO, uri);

startActivity(it);

Intent it = new Intent(Intent.ACTION_SEND);

it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com");

it.putExtra(Intent.EXTRA_TEXT, "The email body text");

it.setType("text/plain");

startActivity(Intent.createChooser(it, "Choose Email Client"));  

Intent it=new Intent(Intent.ACTION_SEND);    

String[] tos={"me@abc.com"};    

String[] ccs={"you@abc.com"};    

it.putExtra(Intent.EXTRA_EMAIL, tos);    

it.putExtra(Intent.EXTRA_CC, ccs);    

it.putExtra(Intent.EXTRA_TEXT, "The email body text");    

it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");    

it.setType("message/rfc822");    

startActivity(Intent.createChooser(it, "Choose Email Client"));

添加附件

Intent it = new Intent(Intent.ACTION_SEND);

it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");

it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");

sendIntent.setType("audio/mp3");

startActivity(Intent.createChooser(it, "Choose Email Client"));

播放多媒体

Intent it = new Intent(Intent.ACTION_VIEW);

Uri uri = Uri.parse("file:///sdcard/song.mp3");

it.setDataAndType(uri, "audio/mp3");

startActivity(it);

Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");

Intent it = new Intent(Intent.ACTION_VIEW, uri);

startActivity(it);  

Uninstall 程序

Uri uri = Uri.fromParts("package", strPackageName, null);

Intent it = new Intent(Intent.ACTION_DELETE, uri);

startActivity(it);

Install 程序

Uri installUri = Uri.fromParts("package", "xxx", null);

returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

搜索应用

//搜索应用

Uri uri = Uri.parse("market://search?q=pname:pkg_name");  

Intent it = new Intent(Intent.ACTION_VIEW, uri);  

startActivity(it);  

//where pkg_name is the full package path for an application  

//显示指定应用的详细页面(这个好像不支持了,找不到app_id)

Uri uri = Uri.parse("market://details?id=app_id");  

Intent it = new Intent(Intent.ACTION_VIEW, uri);  

startActivity(it);  

//where app_id is the application ID, find the ID  

//by clicking on your application on Market home  

//page, and notice the ID from the address bar

参考资料:

http://wallage.blog.163.com/blog/static/1738962420104264340803/

http://www.eoeandroid.com/viewthread.php?tid=266

http://hi.baidu.com/weiyousheng/blog/item/41a5533b587451e614cecb68.html

分享到:
评论
1 楼 charlotte 2013-01-31  
Begin at the beginning and go on till you come to the end; then stop!

相关推荐

    Intent跳转传值

    在“Intent传值”中,我们通常会用到以下几种方法: 1. 使用putExtra()和getExtra(): 这是最常用的方法,可以传递基本数据类型(如int、String、float等)以及Parcelable或Serializable接口的实现类。例如,要在...

    Intent跳转效果

    在这里,我们将探讨几种常见的Intent跳转动画效果,包括左向右推、右向左推、渐变、上推下、下推上、飞入和飞出等。 1. 左向右推和右向左推:这是最常见的页面切换效果,模拟了手机屏幕之间的滑动切换。通过自定义...

    Activity跳转 四种跳转方式

    配置方法与前面几种不同,需要指定两个属性。 ```xml ``` **运行效果**: - `ActA`始终只有一个实例,且不与其他Activity共享任务栈。 - 不能通过系统任务管理器查看到此Activity。 #### 总结 - **标准模式**...

    Android中界面间的跳转(两种方式)

    本篇文章将详细探讨两种主要的界面跳转方法:`startActivity(Intent)`和`startActivityForResult(Intent, int)`。 首先,我们来看第一种方式——`startActivity(Intent)`。这个方法用于启动一个新的Activity,不...

    Android 几种屏幕间跳转的跳转Intent Bundle

    在Android开发中,屏幕间的跳转是应用交互的核心部分,Intent和Bundle在其中起着至关重要的作用。Intent用于启动其他Activity,而Bundle则用于传递数据。以下是关于Android屏幕间跳转的Intent和Bundle的详细说明: ...

    Android Intent实现页面跳转的方法示例

    Android Intent 由以下几个组成部分: * Action:指定要执行的操作,例如 android.intent.action.VIEW。 * URI:指定要操作的数据,例如 http://www.example.com。 * Type:指定要操作的数据类型,例如 image/jpeg...

    知识共享-Android实现页面跳转的几种方式(雷惊风).

    ### Android实现页面跳转的几种方式 在Android应用开发中,页面间的跳转是一项非常基础且重要的功能。本文档详细介绍了几种实现Android页面跳转的方法,并通过实例代码进行了具体演示。 #### 第一种方式:使用...

    android整合--intent

    创建Intent通常有以下几种方式: 1. 对于显式Intent,可以通过类名创建: ```java Intent intent = new Intent(this, TargetActivity.class); ``` 2. 对于隐式Intent,需要设置Action、Data和MIME Type: ```java ...

    android中activity跳转的几种动画

    本篇文章将深入探讨如何在Android中实现Activity跳转的几种动画效果。 一、默认动画 在不设置任何自定义动画的情况下,Android系统会使用默认的滑动效果进行Activity切换。这种效果可以通过设置`activity过渡`来...

    android实现页面跳转

    这种方式确保Intent只会启动开发者指定的那个Activity。代码示例如下: ```java Intent intent = new Intent(context, TargetActivity.class); startActivity(intent); ``` 这里的`context`是当前上下文,`...

    android两个app实现跳转.rar

    在Android平台上,两个应用程序之间的交互通常涉及到应用间跳转,这是一种常见的需求,比如分享功能、登录授权等。本文将深入探讨如何实现Android应用间的跳转,主要基于标题和描述提供的内容,结合标签“android两...

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

    Intent有两种类型: 1. **显式Intent**: 显式Intent明确指定了要启动的组件(Activity或Service),通过ComponentName指定包名和类名。在同一应用程序内部,Activity之间的跳转通常使用显式Intent。 2. **隐式...

    android开发,APP跳转到淘宝商品详情,优惠券领取页面

    总的来说,跳转到淘宝商品详情页、优惠券领取页面及店铺页面,涉及到Android的Intent机制、Deep Linking、第三方应用的API调用以及异常处理。理解这些知识点对于进行Android应用的集成开发至关重要。通过实践和学习...

    Ability跳转.zip

    在 DevEco Studio 中,可以设置断点、查看日志,甚至模拟 Intent 触发来测试 Ability 的跳转逻辑。 在 `AbilityDemo` 示例项目中,通常会包含对以上知识点的具体实现,通过学习这个示例,开发者可以更直观地理解...

    android 运算器 不同activity间的跳转

    在这个过程中,通常会涉及到Intent对象的使用,Intent是Android系统用来启动或与服务进行交互的一种机制。 首先,让我们深入了解Activity的生命周期。每个Activity都有自己的生命周期,包括onCreate()、onStart()、...

    android_跳转到其它应用

    以上就是利用Intent在Android应用中实现跳转至其他应用的几种常见方式,它们为开发者提供了强大的功能,同时也为用户带来了极大的便利。通过合理运用这些技术,可以使应用更加丰富、实用,提升用户的整体体验。

    Android Intent的几种用法详细解析

    本文将详细介绍Android Intent的几种常见用法。 1. **显示网页** 当你需要在应用中打开一个网页时,可以通过ACTION_VIEW Intent来实现。首先创建一个Uri对象解析网页URL,然后创建Intent,将ACTION_VIEW和Uri作为...

    Android页面跳转

    - Intent是Android中进行页面跳转的核心对象,它是应用程序间通信(IPC)的一种方式,不仅用于启动Activity,还能启动Service或BroadcastReceiver。Intent分为显式Intent和隐式Intent,前者指定目标Activity的...

    Activity之间的跳转项目案例实现

    在Activity之间跳转并传递数据,我们通常使用Intent对象。创建一个新的Intent,通过`setComponent()`或`setClass()`指定目标Activity,然后可以使用`putExtra()`方法添加键值对数据。在目标Activity中,通过`...

    12.鸿蒙HarmonyOS App(JAVA) page的隐式跳转demo.rar

    在鸿蒙系统中,页面跳转是应用交互的重要组成部分,而隐式跳转则是一种相对灵活的导航方式。以下将详细解析这个主题。 1. **鸿蒙HarmonyOS概述**: 鸿蒙HarmonyOS是一款面向全场景的分布式操作系统,由华为公司...

Global site tag (gtag.js) - Google Analytics