标签:des android style blog http color java 使用
(Intent译为意图,让人比较费解,实际上解释为“消息”更加合理,干脆就不翻译了)
Intent是能在app组件间传递的消息体,基本使用方式有如下三种:
sendBroadcast()
,sendOrderedBroadcast()
, or sendStickyBroadcast()
来发送广播Caution: 为了确保你的app是安全的,通常用显式intent的方式来启动service,因为用隐式intent启动服务是有安全风险的,隐式intent无法预知启动的service就是你想要的那个。
Intent主要包含如下属性:
需要启动的组件名,一般指包名+类名:com.example.ExampleActivity
对于显式intent是必选的,对于隐式intent,不能指定。
Develop系列-API Guides-应用组件-Intents and Intent Filters(1),布布扣,bubuko.com
Develop系列-API Guides-应用组件-Intents and Intent Filters(1)
标签:des android style blog http color java 使用
原文地址:http://www.cnblogs.com/konger/p/3900393.html