码迷,mamicode.com
首页 > 其他好文 > 详细

隐式意图 Intent

时间:2014-12-04 23:00:47      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   io   ar   sp   java   on   

/显式意图 :必须指定要激活的组件的完整包名和类名 (应用程序之间耦合在一起)
// 一般激活自己应用的组件的时候 采用显示意图

//隐式意图: 只需要指定要动作和数据就可以 ( 好处应用程序之间没有耦合)
//激活别人写的应用 隐式意图, 不需要关心对方的包名和类名

1.Manifest

<activity android:name="com.itheima.intent2.SecondActivity" >
<intent-filter>
<action android:name="com.itheima.intent2.open2" /><!-- 行为(打) -->

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

<data android:mimeType="application/person" /><!-- 数据类型 (酱油)-->
<data android:scheme="jianren" /><!-- 类型约束,描述-->
</intent-filter> </activity> 

// 打 action
// 人 data
// 附件的数据 Category 类别

//没事的情况下打酱油

2.intent.setAction("com.itheima.intent2.open2")//动作(打)

3.intent.addCategory(Intent.CATEGORY_DEFAULT);//附加情况,额外信息,一般为Intent.CATEGORY_DEFAULT(没事的情况下)

4.// URL:统一资源定位符 http https ftp rtsp: URI:统一资源标识符 url是uri的一个子集

  // intent.setData(Uri.parse("jianren:张三"));
  // intent.setType("application/person");
  intent.setDataAndType(Uri.parse("jianren:张三"), "application/person");//数据(酱油)

  startActivity(intent);//此方法执行,会清除setType()的数据,因此采用setDataAndType

隐式意图 Intent

标签:android   style   blog   http   io   ar   sp   java   on   

原文地址:http://www.cnblogs.com/Eudora/p/4143962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!