学习android的intent,将其中的一些总结,整理的笔记记录于此。

intent是一个消息传递对象,可以在不同组件间传递数据。Activity,Service,Broadcast Receiver中都会用到。

参考链接


https://developer.android.com/guide/components/intents-filters.html?hl=zh-cn#Receiving

https://www.tutorialspoint.com/android/android_intents_filters.htm

http://www.cnblogs.com/skynet/archive/2010/07/20/1781644.html

http://www.cnblogs.com/feisky/archive/2010/01/16/1649081.html

intent主要信息


在介绍intent之前,需要了解intent中包含的信息。主要如下:

  • componentName

要启动的目标组件名称。例如com.example.ExampleActivity。可以使用setComponent(),

  • action

表示要执行的动作

  • data

执行动作要操作的数据,android采用指向数据的URI和MIME类型来表示。

例如:

ACTION_MAIN 运行一个任务的第一个启动的activity

ACTION_VIEW content://contracts/people/1 ,显示ID是1的people信息。contentprovider使用

ACTION_DAIL tel:123 , 拨打电话号码123

  • category

表示要处理intent的组件类型信息。这里指的是接收intent的对象的类型信息。

常见如下:

CATEGORY_LAUNCHER 表示activity是任务出事的activity。第一个启动的activity。

CATEGORY_BROWSABLE 目标Activity允许本省通过网络浏览器启动。

  • extra

额外的信息,以键值对的形式保存。可以保存数据到intent中,在接收的地方读取出来。

  • flag

可以指示android如何启动activity,以及启动后如何处理。

例如:

FLAG_ACTIVITY_CLEAR_TASK,在activity启动前清楚与它相关的activity,之后再启动。

Intent的类型


Intent有两种类型,显示意图explicit intent和隐式意图implicit intent。下面会分别介绍。

  • explicit intents

显式的intents,在使用时,明确指定激活的组件名称。例如:

	Intent intent = new Intent(this,Activity2.class);
startActivity(intent);

启动名称是Activity2的组件。

  • implicit intents

隐式intents。没有明确指定组件名称。根据intent中的action,category,数据(URI/MIME)等,找到最合适的组件。

intent-filter


活动,服务,广播接收者为了告知系统能够处理那些隐式的intent,就将要接受的隐式intent信息写在intent-filter标签中。

app发出的intent之后,android系统就会根据intent-filter中的action,category等信息。只有匹配成功之后,接受到的intent才会被处理。

example


android中创建工程,名称是"IntentTest"。

  • 布局文件

设置三个按键,分别用于explicit intent,implicit intent和intent-filter测试。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.intenttest.MainActivity"> <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/explicit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="explicit test"/> <Button
android:id="@+id/implicit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="implicit test"/> <Button
android:id="@+id/intentFilter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="intent filter test" /> </LinearLayout> </RelativeLayout>
  • 新建activity

在Project窗口中,右键点击 app 文件夹并选择 New > Activity > Empty Activity。

activity名称Activity2。

android studio会新建一个Activity.java的文件,并在AndroidManifest.xml中添加activity.

Activity2.java如下所示:

package com.example.intenttest;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle; public class Activity2 extends AppCompatActivity { @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_2);
}
}
  • AndroidManifest.xml

清单文件如下所示

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.intenttest"> <application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity> <activity android:name=".Activity2">
</activity>
</application> </manifest>

现在的清单文件中已经有intent-filter标签。

ACTION_MAIN 操作指示这是主要入口点,且不要求输入任何 Intent 数据。

CATEGORY_LAUNCHER 类别指示此 Activity 的图标应放入系统的应用启动器。

所以一开始运行app时,第一个启动的是MainActivity,而不是新建的Activity2。

  • MainActivity

MainActivity.java如下所示:

package com.example.intenttest;

import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button; public class MainActivity extends AppCompatActivity {
public Button btnExplicit;
public Button btnImplicit;
public Button btnIntentFilter; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); btnExplicit = (Button) findViewById(R.id.explicit);
btnImplicit = (Button) findViewById(R.id.implicit);
btnIntentFilter = (Button) findViewById(R.id.intentFilter);
// 打开activity2
btnExplicit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 根据指定类型开启组件
Intent intent = new Intent(MainActivity.this, Activity2.class);
// 除了通过指定类型开启组件,还可以根据组件包名、全路径来指定开启组件。
/*
Intent intent = new Intent();
intent.setClassName("com.example.intenttest","com.example.intenttest.Activity2");
*/
startActivity(intent);
}
});
// 打开浏览器,访问网址
btnImplicit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.com"));
startActivity(intent);
}
});
// 打开相机
btnIntentFilter.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setAction("android.media.action.IMAGE_CAPTURE");
intent.addCategory("android.intent.category.DEFAULT");
startActivity(intent);
}
});
}
}

将app安装到手机上。

点击第一个按键“EXPLICIT TEST”将会切换到Activity2的界面,是一个空白的界面。

点击第一个按键“IMPLICIT TEST”将会打开手机的浏览器,并访问"www.google.com",但由于goole被墙,访问失败。

点击第三个按键“INTENT FILTER TEST”将会直接带卡手机的相机。

ui如下:

  • intent-filter测试

下面做一些修改,用于测试intent-filter。

在AndroidMainfest.xml中为Activity2添加标签。

android.media.action.IMAGE_CAPTURE和打开相机的action是相同的。

如下为新的AndroidManifest.xml文件。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.intenttest"> <application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity> <activity android:name=".Activity2">
<intent-filter>
<action android:name="android.media.action.IMAGE_CAPTURE"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application> </manifest>

从新运行更改之后的app。当点击第三个按键“INTENT FILTER TEST”时,会弹出选框。选择相机还是IntentTest。

点击IntentTest,会直接跳转到Activity2的界面。说明设置的intent-filter生效了。如下所示:

Tony Liu

2017-3-8, Shenzhen

Android intent 笔记的更多相关文章

  1. Android学习笔记(三)——初探Intent

    //此系列博文是<第一行Android代码>的学习笔记,如有错漏,欢迎指正! Intent 是 Android 程序中各组件之间进行交互的一种重要方式,它不仅可以指明当前组件想要执行的动作 ...

  2. Pro Android学习笔记(十一):了解Intent(中)

    Intent的构成 Intent能够带有action,data(由URI表达),extra data(key/value map,键值对),指定的类名(成为component name).一个inte ...

  3. Android学习笔记-Intent(一)

    Intent对象在Android官方API这样描述:It is a passive data structure holding an abstract description of an opera ...

  4. 【转】Pro Android学习笔记(十二):了解Intent(下)

    解析Intent,寻找匹配Activity 如果给出component名字(包名.类名)是explicit intent,否则是implicit intent.对于explicit intent,关键 ...

  5. 【转】Pro Android学习笔记(十一):了解Intent(中)

    Intent的构成 Intent可以带有action,data(由URI表达),extra data(key/value map,键值对),指定的类名(成为component name).一个inte ...

  6. 【转】Pro Android学习笔记(十):了解Intent(上)

    目录(?)[-] Intent基本含义 系统的Intent Android引入了Intent的概念来唤起components,component包括:1.Activity(UI元件) 2.Servic ...

  7. Android复习笔记--Intent

    Intent是Android中各组件跳转的重要方式,一般可悲用于启动活动.启动服务.以及发送广播等场景. #显示Intent 主要主要用于启动已知的组件 //发送方  Intent intent = ...

  8. android学习笔记29——Intent/IntentFilter

    Intent/IntentFilter Intent封装android应用程序需要启动某个组件的“意图”,Intent还是应用程序组件之间通信的重要媒介. EG:Activity之间需要交换数据时,使 ...

  9. Android(java)学习笔记121:android.intent.action.MAIN 与 android.intent.category.LAUNCHER 理解

    先看看网路上的说法: android.intent.action.MAIN决定应用程序最先启动的 Activity android.intent.category.LAUNCHER决定应用程序是否显示 ...

随机推荐

  1. bootstrap中下拉菜单点击事件 uncaught syntaxerror unexpected end of input异常问题

    原代码: <ul class="dropdown-menu" role="menu"> <li><a href="jav ...

  2. jquery.cookie实战用法详细解析

    Cookie是由服务器端生成,发送给User-Agent(一般是浏览器),浏览器会将Cookie的key/value保存到某个目录下的文本文件内,下次请求同一网站时就发送该Cookie给服务器(前提是 ...

  3. jQuery查询性能考虑

    http://blog.163.com/neusoft_hao@yeah/blog/static/120544724201282810510215/

  4. ASP.NET Core MVC/WebAPi如何构建路由?

    前言 本节我们来讲讲ASP.NET Core中的路由,在讲路由之前我们首先回顾下之前所讲在ASP.NET Core中的模型绑定这其中有一个问题是我在项目当中遇见的,我们下面首先来看看这个问题. 回顾A ...

  5. Linux 用键盘操作窗口

    以下是我从各处搜集来的关于用键盘操作窗口信息,操作可能不是最简或者最好的,当然也可能不是最全的,以后遇到新的操作,我会即使添加,如果你有我没有列出的操作,希望你能提出,我可以加上! 我实验的操作系统是 ...

  6. Python自然语言处理学习笔记之评价(evaluationd)

    对模型的评价是在test set上进行的,本文首先介绍测试集应该满足的特征,然后介绍四种评价方法. 一.测试集的选择 1.首先,测试集必须是严格独立于训练集的,否则评价结果一定很高,但是虚高,不适用于 ...

  7. asp.net core mvc剖析:启动流程

    asp.net core mvc是微软开源的跨平台的mvc框架,首先它跟原有的MVC相比,最大的不同就是跨平台,然后又增加了一些非常实用的新功能,比如taghelper,viewcomponent,D ...

  8. PHP面向对象——GD库实现图片水印和缩略图

    今天的实现目标就是使用GD库完成对图片加水印和图 片缩略图两个功能 动身前逻辑准备 属性: 路径 功能: 构造方法 生成水印的方法 获取 图片信息 获取位置信息(123 456 789) 创建图片资源 ...

  9. Android jni 编程2(对基本类型一维整型数组的操作)

    参考教程和这位博主的对一维数组的处理,主要包括以下三种类型: //传入一维数组,无返回值 public native void arrayEncode(int[] arr); //传一个一维数组和数组 ...

  10. Android 学习笔记1

    参考:http://blog.csdn.net/ztp800201/article/details/7265414 为了快速引入后面的内容就直接使用了这种办法来实现功能,后期再改进: /* ***** ...