`
zheyiw
  • 浏览: 1025092 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Intent,Action,大全[转]

阅读更多

Intent的中文意思是“意图,目的”的意思,可以理解为不同组件之间通信的“媒介”或者“信使”。

目标组件一般要通过Intent来声明自己的条件,一般通过组件中的<intent-filter>元素来过滤。

Intent在由以下几个部分组成:动作(action),数据(data),分类(Category),类型(Type),组件(Component),和扩展信息(Extra)。

Intent在寻找目标组件的时候有两种方法:第一,通过组件名称直接指定;第二,通过Intent Filter过滤指定

Intent启动不同组件的方法
组件名称  方法名称  
Activity  startActivity()  startActivityForResult()  
Service  startService()  bindService()  
Broadcasts  sendBroadcast()  sendOrderedBroadcast()  sendStickyBroadcast()

 
常见的Activity Action Intent常量
常量名称   常量值  意义
ACTION_MAIN  android.intent.action.MAIN   应用程序入口
ACTION_VIEW  android.intent.action.VIEW  显示数据给用户
ACTION_ATTACH_DATA  android.intent.action.ATTACH_DATA  指明附加信息给其他地方的一些数据
ACTION_EDIT  android.intent.action.EDIT  显示可编辑的数据  
ACTION_PICK  android.intent.action.PICK  选择数据  
ACTION_CHOOSER  android.intent.action.CHOOSER  显示一个Activity选择器  
ACTION_GET_CONTENT  android.intent.action.GET_CONTENT  获得内容  
ACTION_DIAL  android.intent.action.GET_CONTENT  显示打电话面板  
ACITON_CALL  android.intent.action.DIAL  直接打电话  
ACTION_SEND  android.intent.action.SEND  直接发短信  
ACTION_SENDTO  android.intent.action.SENDTO  选择发短信  
ACTION_ANSWER  android.intent.action.ANSWER  应答电话  
ACTION_INSERT  android.intent.action.INSERT  插入数据  
ACTION_DELETE  android.intent.action.DELETE  删除数据  
ACTION_RUN  android.intent.action.RUN  运行数据  
ACTION_SYNC  android.intent.action.SYNC  同步数据  
ACTION_PICK_ACTIVITY  android.intent.action.PICK_ACTIVITY  选择Activity  
ACTION_SEARCH  android.intent.action.SEARCH  搜索  
ACTION_WEB_SEARCH  android.intent.action.WEB_SEARCH  Web搜索  
ACTION_FACTORY_TEST  android.intent.action.FACTORY_TEST  工厂测试入口点     


常见的BroadcastIntent Action常量  BroadcastIntent 
Action字符串常量  描述  
ACTION_TIME_TICK  系统时间每过一分钟发出的广播  
ACTION_TIME_CHANGED  系统时间通过设置发生了变化  
ACTION_TIMEZONE_CHANGED  时区改变  
ACTION_BOOT_COMPLETED  系统启动完毕  
ACTION_PACKAGE_ADDED  新的应用程序apk包安装完毕  
ACTION_PACKAGE_CHANGED  现有应用程序apk包改变  
ACTION_PACKAGE_REMOVED  现有应用程序apk包被删除  
ACTION_UID_REMOVED  用户id被删除     


Intent的Action和Data属性匹配  
Action属性  Data属性  说明  
ACTION_VIEW  content://contacts/people/1  显示id为1的联系人信息  
ACTION_DIAL  content://contacts/people/1  将id为1的联系人电话号码显示在拨号界面中  
ACITON_VIEW  tel:123  显示电话为123的联系人信息  
ACTION_VIEW  http://www.google.com  在浏览器中浏览该网站  
ACTION_VIEW  file://sdcard/mymusic.mp3  播放MP3  
ACTION_VIEW  geo:39.2456,116.3523  显示地图
 

常见的Category常量
Category字符串常量  描述
CATEGORY_BROWSABLE  目标Activity能通过在网页浏览器中点击链接而激活(比如,点击浏览器中的图片链接)  
CATEGORY_GADGET  表示目标Activity可以被内嵌到其他Activity当中  
CATEGORY_HOME  目标Activity是HOME Activity,即手机开机启动后显示的Activity,或按下HOME键后显示的Activity  
CATEGORY_LAUNCHER  表示目标Activity是应用程序中最优先被执行的Activity  
CATEGORY_PREFERENCE  表示目标Activity是一个偏爱设置的Activity


常见的Extra常量
Extra键值字符串常量  描述
EXTRA_BCC  装有邮件密送地址的字符串数组  
EXTRA_CC  装有邮件抄送地址的字符串数组  
EXTRA_EMAIL  装有邮件发送地址的字符串数组  
EXTRA_INTENT  使用ACTION_PICK_ACTIVITY动作时装有Intent选项的键  
EXTRA_KEY_EVENT  触发该Intent的案件的KeyEvent对象  
EXTRA_PHONE_NUMBER  使用拨打电话相关的Action时,电话号码字符串的键,类型为String  
EXTRA_SHORTCUT_ICON  使用ACTION_CREATE_SHORTCUT在HomeActivity创建快捷方式时,对快捷方式的描述信息。
其中ICON和ICON_RESOURCE描述的是快捷方式的图标,类型分别为Bitmap和ShortcutIconResource。INTENT描述的是快捷方式相对应的Intent对象。NAME描述的是快捷方式的名字。  
EXTRA_SHORTCUT_ICON_RESOURCE  EXTRA_SHORTCUT_INTENT  EXTRA_SHORTCUT_NAME  EXTRA_SUBJECT  描述信息主题的键  
EXTRA_TEXT  使用ACTION_SEND动作时,用来描述要发送的文本信息,类型为CharSequence  
EXTRA_TITLE  使用ACTION_CHOOSER动作时,描述对话框标题的键,类型为CharSequence  
EXTRA_UID  使用ACTION_UID_REMOVED动作时,描述删除的用户id的键,类型为int    


Android.telephony包中的类  
类名  描述  
CellLocation  表示设备位置的抽象类  
PhoneNumberFormattingTextWather  监视一个TextView控件,如果有电话号码输入,则用formatNumber()方法处理电话号码  
PhoneNumberUtils  包含各种处理电话号码字符串的使用工具  
PhoneStateListener  监视手机中电话状态变化的监听类  
ServiceState  包含电话状态和相关的服务信息  
TelephonyManager  提供对手机中电话服务信息的访问

 
与短信服务相关的类主要在包android.telephony.gsm中
类名  描述
GsmCellLocation  表示GSM手机的基站位置  
SmsManager  管理各种短信操作  
SmsMessage  表示具体的短信  


1.Intent的用法:
(1)用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里,传给电子邮件发送组件。
(2)用类名跳转
    Intent负责对应用中一次操作的动作、动作涉及数据、附加数据进行描 述,Android则根据此Intent的描述, 负责找到对应的组件,将 Intent传递给调用的组件,并完成组件的调用。Intent在这里起着实现调用者与被调用者之间的解耦作用。Intent传递过程中,要找 到目标消费者(另一个Activity,IntentReceiver或Service),也就是Intent的响 应者。
Intent intent = new Intent();
intent.setClass(context, targetActivy.class);
//或者直接用 Intent intent = new Intent(context, targetActivity.class);

startActivity(intent);
不过注意用类名跳转,需要在AndroidManifest.xml中申明activity  
<activity android:name="targetActivity"></activity>
2.几种Intent的用法
android 中intent是经常要用到的。不管是页面牵转,还是传递数据,或是调用外部程序,系统功能都要用到intent。在做了一些intent的例子之后,整理了一下intent,希望对大家有用。由于intent内容太多,不可能真的写全,难免会有遗落,以后我会随时更新。如果你们有疑问或新的intent内容,希望交流。 
★intent大全: 
1.从google搜索内容 
Intent intent = new Intent(); 
intent.setAction(Intent.ACTION_WEB_SEARCH); 
intent.putExtra(SearchManager.QUERY,"searchString") 
startActivity(intent); 

2.浏览网页 
Uri uri = Uri.parse("http://www.google.com"); 
Intent it  = new Intent(Intent.ACTION_VIEW,uri); 
startActivity(it); 

3.显示地图 
Uri uri = Uri.parse("geo:38.899533,-77.036476"); 
Intent it = new Intent(Intent.Action_VIEW,uri); 
startActivity(it); 

4.路径规划 
Uri uri = Uri.parse("http://maps.google.com/maps?f=dsaddr=startLat%20startLng&daddr=endLat%20endLng&hl=en"); 
Intent it = new Intent(Intent.ACTION_VIEW,URI); 
startActivity(it); 

5.拨打电话 
Uri uri = Uri.parse("tel:xxxxxx"); 
Intent it = new Intent(Intent.ACTION_DIAL, uri);   
startActivity(it); 

6.调用发短信的程序 
Intent it = new Intent(Intent.ACTION_VIEW);    
it.putExtra("sms_body", "The SMS text");    
it.setType("vnd.android-dir/mms-sms");    
startActivity(it); 

7.发送短信 
Uri uri = Uri.parse("smsto:0800000123");    
Intent it = new Intent(Intent.ACTION_SENDTO, uri);    
it.putExtra("sms_body", "The SMS text");    
startActivity(it); 
String body="this is sms demo"; 
Intent mmsintent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("smsto", number, null)); 
mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body); 
mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, true); 
mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, true); 
startActivity(mmsintent); 

8.发送彩信 
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); 
StringBuilder sb = new StringBuilder(); 
sb.append("file://"); 
sb.append(fd.getAbsoluteFile()); 
Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mmsto", number, null)); 
// Below extra datas are all optional. 
intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_SUBJECT, subject); 
intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body); 
intent.putExtra(Messaging.KEY_ACTION_SENDTO_CONTENT_URI, sb.toString()); 
intent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, composeMode); 
intent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, exitOnSent); 
startActivity(intent); 

9.发送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")); 

10.播放多媒体   
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); 

11.uninstall apk 
Uri uri = Uri.fromParts("package", strPackageName, null);    
Intent it = new Intent(Intent.ACTION_DELETE, uri);    
startActivity(it); 

12.install apk 
Uri installUri = Uri.fromParts("package", "xxx", null); 
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri); 

13. 打开照相机 
<1>Intent i = new Intent(Intent.ACTION_CAMERA_BUTTON, null); 
	this.sendBroadcast(i); 
<2>long dateTaken = System.currentTimeMillis(); 
	String name = createName(dateTaken) + ".jpg"; 
	fileName = folder + name; 
	ContentValues values = new ContentValues(); 
	values.put(Images.Media.TITLE, fileName); 
	values.put("_data", fileName); 
	values.put(Images.Media.PICASA_ID, fileName); 
	values.put(Images.Media.DISPLAY_NAME, fileName); 
	values.put(Images.Media.DESCRIPTION, fileName); 
	values.put(Images.ImageColumns.BUCKET_DISPLAY_NAME, fileName); 
	Uri photoUri = getContentResolver().insert( 
			MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values); 
	 
	Intent inttPhoto = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); 
	inttPhoto.putExtra(MediaStore.EXTRA_OUTPUT, photoUri); 
	startActivityForResult(inttPhoto, 10); 

14.从gallery选取图片 
Intent i = new Intent(); 
i.setType("image/*"); 
i.setAction(Intent.ACTION_GET_CONTENT); 
startActivityForResult(i, 11); 

15. 打开录音机 
Intent mi = new Intent(Media.RECORD_SOUND_ACTION); 
startActivity(mi); 

16.显示应用详细列表       
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      

刚才找app id未果,结果发现用package name也可以 
Uri uri = Uri.parse("market://details?id=<packagename>"); 
这个简单多了 

17寻找应用       
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       

18打开联系人列表 
	<1>            
	Intent i = new Intent(); 
	i.setAction(Intent.ACTION_GET_CONTENT); 
	i.setType("vnd.android.cursor.item/phone"); 
	startActivityForResult(i, REQUEST_TEXT); 

	<2> 
	Uri uri = Uri.parse("content://contacts/people"); 
	Intent it = new Intent(Intent.ACTION_PICK, uri); 
	startActivityForResult(it, REQUEST_TEXT); 

19 打开另一程序 
Intent i = new Intent(); 
ComponentName cn = new ComponentName("com.yellowbook.android2", 
		"com.yellowbook.android2.AndroidSearch"); 
i.setComponent(cn); 
i.setAction("android.intent.action.MAIN"); 
startActivityForResult(i, RESULT_OK); 

20.调用系统编辑添加联系人(高版本SDK有效):
Intent it = newIntent(Intent.ACTION_INSERT_OR_EDIT);
it.setType("vnd.android.cursor.item/contact");
//it.setType(Contacts.CONTENT_ITEM_TYPE);
it.putExtra("name","myName");
it.putExtra(android.provider.Contacts.Intents.Insert.COMPANY,  "organization");
it.putExtra(android.provider.Contacts.Intents.Insert.EMAIL,"email");
it.putExtra(android.provider.Contacts.Intents.Insert.PHONE,"homePhone");
it.putExtra(android.provider.Contacts.Intents.Insert.SECONDARY_PHONE,
			   "mobilePhone");
it.putExtra(  android.provider.Contacts.Intents.Insert.TERTIARY_PHONE,
			   "workPhone");
it.putExtra(android.provider.Contacts.Intents.Insert.JOB_TITLE,"title");
startActivity(it);
 
21.调用系统编辑添加联系人(全有效):
Intent intent = newIntent(Intent.ACTION_INSERT_OR_EDIT);
intent.setType(People.CONTENT_ITEM_TYPE);
intent.putExtra(Contacts.Intents.Insert.NAME, "My Name");
intent.putExtra(Contacts.Intents.Insert.PHONE, "+1234567890");
intent.putExtra(Contacts.Intents.Insert.PHONE_TYPE,Contacts.PhonesColumns.TYPE_MOBILE);
intent.putExtra(Contacts.Intents.Insert.EMAIL, "com@com.com");
intent.putExtra(Contacts.Intents.Insert.EMAIL_TYPE,                    Contacts.ContactMethodsColumns.TYPE_WORK);
startActivity(intent);



分享到:
评论

相关推荐

    Android 广播大全 Intent Action 事件.

    Android 广播大全 Intent Action 事件 Android 广播大全 Intent Action 事件是 Android 系统中的一种核心机制,用于在应用程序之间传递信息和事件通知。 Intent 是一种轻量级的消息对象,用于描述一个操作的请求或...

    android 常用的intent action整理

    ### Android常用的Intent Action整理 #### 一、Intent概念与作用 在Android开发中,Intent作为一个重要的组成部分,扮演着连接各个组件的角色。它不仅能够实现组件间的简单数据传递,还能够执行更为复杂的功能,...

    intent_action大全

    - `Intent.ACTION_WEB_SEARCH` 是一个标准的Action,用于启动系统的网页搜索引擎。 - `SearchManager.QUERY` 是一个额外的数据键,用来传递搜索查询字符串。 - 使用 `startActivity(intent)` 来启动新的Activity。 ...

    Intent.action_大全

    ### Android Intent Action 大全 #### 一、概述 在Android开发中,`Intent`作为组件间通信的重要机制之一,其通过携带特定的信息在不同组件之间进行传递,从而实现组件间的交互与通信。`Intent`有两种类型:显式...

    android intent和intent action大全.doc

    在Android开发中,Intent是一种非常重要的组件,它用于在应用程序之间建立通信桥梁,...此外,Intent还有许多其他ACTION,例如`ACTION_PICK`用于选择数据,`ACTION_SEND`用于分享内容等,开发者可以根据需求灵活运用。

    Android Intent用法大全

    ### Android Intent用法大全 #### 概述 在Android开发中,`Intent`是一个非常重要的概念,它主要用于组件之间的通信,比如启动一个Activity、服务、广播接收器等。本篇文章将详细介绍Intent的各种常见用法,包括但...

    android Action call 拨打电话 Intent.ACTION.CALL

    当我们想要从应用中拨打电话时,就需要用到Intent ACTION_CALL这个知识点。接下来,我们将深入探讨如何在Android中使用Intent ACTION_CALL来实现拨打电话的功能。 首先,理解Intent ACTION_CALL的含义是关键。...

    android_intent和intent_action大全

    在Android开发中,Intent是一种非常重要的机制,用于在应用程序组件之间进行通信,它可以用来启动其他组件,如Activity、...在开发过程中,合理使用Intent和IntentAction可以极大地提高应用程序的功能性和用户体验。

    Intent总结03 Action属性

    本文将深入探讨Intent中的Action属性,包括如何使用自定义Action和系统内置的Action。 一、Intent的基本结构 Intent由两部分组成:Action、Data、Category、Component和其他额外的数据。Action是Intent的核心部分...

    android-intent-and-intent-action.zip_Android Intent_action

    android intent和intent action大全

    Intent实现活动转换

    Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); startActivityForResult(intent, PICK_CONTACT_REQUEST); ``` 这里,ACTION_PICK是动作,表示我们要进行选取操作;...

    android.intent.action.TIME_TICK

    3. 注册IntentFilter:为IntentFilter添加对应的ACTION,如"android.intent.action.TIME_TICK"、"android.intent.action.SCREEN_ON"和"android.intent.action.BATTERY_CHANGED"。 4. 不再需要时,记得在合适的位置...

    intent-action-send.7z

    创建ACTION_SEND Intent时,你需要设置ACTION字段为"android.intent.action.SEND"。此外,还需要设置数据类型(MIME type),以便目标应用知道你要分享的内容类型。例如,如果你要分享文本,可以使用"text/plain";...

    用Intent.ACTION_SEND进行分享

    Intent.ACTION_SEND是Intent的一个特定动作,用于实现应用中的内容分享功能。当你点击一个“分享”按钮时,系统会弹出一个分享菜单,让用户选择不同的应用程序来分享内容,这就是ACTION_SEND的作用。 ACTION_SEND ...

    Intent的Activity转向

    Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("http://example.com")); startActivity(intent); ``` 4. Intent的数据传递: Intent不仅可以启动Activity,还可以携带数据。使用...

    Android_intent_大全

    6. **Intent Filters**:在AndroidManifest.xml中,通过intent-filter标签定义组件能响应哪些Intent,包括Action、Category和Data,使得其他应用可以通过隐式Intent调用组件。 7. **startActivity()** 和 **...

    Android-Intent-Action.zip_action _android

    本资料主要聚焦于Android Intent中的Action概念,详细解析了Android Intent Action大全。 Intent通常包含两个关键部分:Action和Data。Action定义了Intent想要执行的操作类型,如启动一个新的活动(Activity)、...

    Android常用的intent action汇总

    Intent.ACTION_CALL_BUTTON;startActivity(intent);10. Intent.ACTION_DATE_CHANGEDString: android.intent.action.DATE_CHANGED日期改变时发出的广播,例如年、月、日改变。11. Intent.ACTION_EDITString: android....

    intent_action

    Intent shortcutIntent = new Intent(Intent.ACTION_ADD_SHORTCUT); // 配置必要的数据与标志 startActivity(shortcutIntent); ``` #### 2. ALL_APPS_ACTION - **描述**:此Action用于启动显示所有应用列表的...

    Android利用Intent启动和关闭Activity

    Intent call = new Intent(Intent.ACTION_CALL); call.setData(Uri.parse("tel:13811112222")); startActivity(call); ``` 隐式启动可以让用户使用系统或其他应用提供的服务,如拨号、发送邮件等,增强了组件的复用...

Global site tag (gtag.js) - Google Analytics