显式intent和隐式intent

android其中显式intent和隐式intent的差别

定义:

  Intent定义:Intent是一种在不同组件之间传递的请求消息。是应用程序发出的请求和意图。

作为一个完整的消息传递机制,Intent不仅须要发送端,还须要接收端。

  显式Intent定义:对于明白指出了目标组件名称的Intent。我们称之为显式Intent。

  隐式Intent定义:对于没有明白指出目标组件名称的Intent。则称之为隐式Intent。

显示Intent直接指明了被启动的的类的定义 

比方一个实例: 

Mainactivity.java

package com.example.root.longpra;

import android.content.Intent;

import android.support.v7.app.ActionBarActivity;

import android.os.Bundle;

import android.view.Menu;

import android.view.MenuItem;

import android.view.View;

import android.widget.TextView;

public class MainActivity extends ActionBarActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);/*绑定activity*/

findViewById(R.id.startbtn).setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

startActivity(new Intent(MainActivity.this,AnoAct.class));

/*像这样的非常明白的指出了被启动的类的定义的就是显示Intent*/

}

});

}

@Override

public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.

getMenuInflater().inflate(R.menu.menu_main, menu);

return true;

}

@Override

public boolean onOptionsItemSelected(MenuItem item) {

// Handle action bar item clicks here. The action bar will

// automatically handle clicks on the Home/Up button, so long

// as you specify a parent activity in AndroidManifest.xml.

int id = item.getItemId();

//noinspection SimplifiableIfStatement

if (id == R.id.action_settings) {

return true;

}

return super.onOptionsItemSelected(item);

}

}

AnoAct.java

package com.example.root.longpra;

import android.app.Activity;

import android.os.Bundle;

/**

* Created by root on 15-8-22.

*/

public class AnoAct extends Activity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.anoact);/*绑定anoact*/

}

}

通过字符串来启动activity

AndroidManifest.xml

<?

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

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

package="com.example.root.longpra" >

<application

android:allowBackup="true"

android:icon="@mipmap/ic_launcher"

android:label="@string/app_name"

android:theme="@style/AppTheme" >

<activity

android:name=".MainActivity"

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=".AnoAct"

android:label="LongPra">

<intent-filter>

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

<!--android.intent.category.DEFAULT指名这个intent-filter这个行为方式为一个activity-->

<action android:name="com.example.root.longpra.intent.action.AnoAct"/>

<!--action能够为随意字符串。仅仅要在启动的过程启用这个字符串就可以-->

</intent-filter>>

</activity>>

</application>

</manifest>

MainActivity.java

package com.example.root.longpra;

import android.content.Intent;

import android.support.v7.app.ActionBarActivity;

import android.os.Bundle;

import android.view.Menu;

import android.view.MenuItem;

import android.view.View;

import android.widget.TextView;

public class MainActivity extends ActionBarActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);/*绑定activity*/

findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

startActivity(new Intent(AnoAct.ACTION));

/*像这样的非常明白的指出了被启动的类的定义的就是显示Intent*/

}

});

}

@Override

public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.

getMenuInflater().inflate(R.menu.menu_main, menu);

return true;

}

@Override

public boolean onOptionsItemSelected(MenuItem item) {

// Handle action bar item clicks here. The action bar will

// automatically handle clicks on the Home/Up button, so long

// as you specify a parent activity in AndroidManifest.xml.

int id = item.getItemId();

//noinspection SimplifiableIfStatement

if (id == R.id.action_settings) {

return true;

}

return super.onOptionsItemSelected(item);

}

}

AnoAct.java

package com.example.root.longpra;

import android.app.Activity;

import android.app.Notification;

import android.os.Bundle;

/**

* Created by root on 15-8-22.

*/

public class AnoAct extends Activity {

public static final String ACTION = "com.example.root.longpra.intent.action.AnoAct";//在这边定义这个字符串微一个常量。这样当外面须要调用这个activity时候能够直接使用ACTION

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.anoact);/*绑定anoact*/

}

}

新建一个app1。在Mainctivity中

package com.example.root.app1;

import android.content.Intent;

import android.support.v7.app.ActionBarActivity;

import android.os.Bundle;

import android.view.Menu;

import android.view.MenuItem;

import android.view.View;

public class MainActivity extends ActionBarActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

startActivity(new Intent("com.example.root.longpra.intent.action.AnoAct"));

}

});

}

@Override

public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.

getMenuInflater().inflate(R.menu.menu_main, menu);

return true;

}

@Override

public boolean onOptionsItemSelected(MenuItem item) {

// Handle action bar item clicks here. The action bar will

// automatically handle clicks on the Home/Up button, so long

// as you specify a parent activity in AndroidManifest.xml.

int id = item.getItemId();

//noinspection SimplifiableIfStatement

if (id == R.id.action_settings) {

return true;

}

return super.onOptionsItemSelected(item);

}

}

这样能够直接启动app中的AnoAct。以上就是隐示的intent

说明:Android系统使用IntentFilter来寻找与隐式Intent相关的对象。

  详解:

  显式Intent直接用组件的名称定义目标组件,这样的方式非常直接。

可是因为开发者往往并不清楚别的应用程序的组件名称。因此,显式Intent很多其它用于在应用程序内部传递消息。比方在某应用程序内,一个Activity启动一个Service。

  隐式Intent恰恰相反。它不会用组件名称定义须要激活的目标组件。它更广泛地用于在不同应用程序之间传递消息。

  在显式Intent消息中。决定目标组件的唯一要素就是组件名称,因此,假设你的Intent中已经明白定义了目标组件的名称。那么你就全然不用再定义其它Intent内容。

  而对于隐式Intent则不同。因为没有明白的目标组件名称。所以必须由Android系统帮助应用程序寻找与Intent请求意图最匹配的组件。

  Android系统寻找与Intent请求意图最匹配的组件详细的选择方法

是:Android将Intent的请求内容和一个叫做IntentFilter的过滤器比較,IntentFilter中包括系统中全部可能的待选组件。

  假设IntentFilter中某一组件匹配隐式Intent请求的内容。那么Android就选择该组件作为该隐式Intent的目标组件。

  Android怎样知道应用程序可以处理某种类型的Intent请求呢?这须要应用程序在Android-Manifest.xml中声明自己所含组件的过滤器(就可以以匹配哪些Intent请求)。

  一个没有声明Intent-Filter的组件仅仅能响应指明自己名字的显式Intent请求,而无法响应隐式Intent请求。

  而一个声明了IntentFilter的组件既能够响应显式Intent请求。也能够响应隐式Intent请求。

在通过和

IntentFilter比較来解析隐式Intent请求时,Android将下面三个因素作为选择的參考标准。

  Action

  Data

  Category

  而Extra和Flag在解析收到Intent时是并不起作用的。

钟志远  江苏南京  904727147

时间: 2024-11-08 12:46:31

显式intent和隐式intent的相关文章

显式Intent与隐式Intent的功能与使用方法解析。

显式Intent与隐式Intent的功能与使用方法解析. Intent,在中文中的意思是意图.就是想要做的事. 而使用startActivity(Intentintent)或者startActivityForResult(Intentintent)或者别的使用它的方法,形象地说就是指  去做你想要做的事.(do what you want to do) 首先,大体的介绍一下它们的使用差别: 1.Explicit Intent(显式意图):主要用于调用自身应用程序的组件(activity,serv

Android中的显示Intent和隐式Intent

1.显示Intent 在onclick方法中 Intent intent=new Intent(FirstActivity.this,SecondActivity.class); startActivity(intent); 2.隐式Intent 隐式Intent不明确指出我们要启动哪一个活动,而是指定一系列更为抽象的action和category等信息,然后交由系统去分析这个intent,并帮我们找到合适的Intent去启动 通过标签下配置的内容,指定当前活动能够响应的action和categ

Android 学习之显式激活与隐式激活Activity

在res界面里面有两个布局文件activity_main和acivity_two activity_main里面有如下四个按钮 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" an

显式意图,隐式意图。。带值传递意图

显式意图1 显式意图2 带值传递意图1 带值传递意图2 隐式意图1 隐式意图2

JavaScript中显式原型和隐式原型的联系

显式原型:prototype 隐式原型:__proto__ 1.显式原型和隐式原型是什么? 在js中万物皆对象,方法(Function)是对象,方法的原型(Function.prototype)是对象,对象具有属性(__proto__)称为隐式原型,对象的隐式原型指向构造该对象的构造函数的显式原型. 方法(Function)是一个特殊的对象,除了和其他对象一样具有__proto__属性以外,它还有一个自己特有的原型属性(prototype),这个属性是一个指针,指向原型对象.原型对象也有一个属性

(java)selenium webdriver学习---三种等待时间方法:显式等待,隐式等待,强制等待

selenium webdriver学习---三种等待时间方法:显式等待,隐式等待,强制等待 本例包括窗口最大化,刷新,切换到指定窗口,后退,前进,获取当前窗口url等操作: import java.util.Set;import java.util.concurrent.TimeUnit; import org.jsoup.Jsoup;import org.jsoup.nodes.Document;import org.openqa.selenium.By;import org.openqa.

C#隐式类型局部变量&amp;隐式类型数组

[隐式类型局部变量] 可以赋予局部变量推断“类型”var 而不是显式类型.var 关键字指示编译器根据初始化语句右侧的表达式推断变量的类型.推断类型可以是内置类型.匿名类型.用户定义类型或 .NET Framework 类库中定义的类型. // i is compiled as an int var i = 5; // s is compiled as a string var s = "Hello"; // a is compiled as int[] var a = new[] {

scala学习笔记-隐式转换与隐式参数(18)

Scala提供的隐式转换和隐式参数功能,是非常有特色的功能.是Java等编程语言所没有的功能.它可以允许你手动指定,将某种类型的对象转换成其他类型的对象.通过这些功能,可以实现非常强大,而且特殊的功能. Scala的隐式转换,其实最核心的就是定义隐式转换函数,即implicit conversion function.定义的隐式转换函数,只要在编写的程序内引入,就会被Scala自动使用.Scala会根据隐式转换函数的签名,在程序中使用到隐式转换函数接收的参数类型定义的对象时,会自动将其传入隐式转

play scala 3 隐式参数和隐式域(implicit method and implicit field)

原文出处 http://alvinalexander.com/scala/scala-implicit-method-arguments-fields-example Microsoft Windows [版本 6.1.7601]版权所有 (c) 2009 Microsoft Corporation.保留所有权利. C:\Users\Bo>scalaWelcome to Scala version 2.10.4 (Java HotSpot(TM) 64-Bit Server VM, Java 1