Android Intents and Intent Filters(三)
数据(data)检测 data标记也是在intent-filter中定义的,大致格式如下: 1 2 3 4 5 <intent-filter> <action android:name="android.intent.action.VIEW"></action> <category android:name="android.intent.category.DEFAULT"></category> <data android:mimeType="text/plain"></data> </intent-filter> 每个data定义一个URI和数据类型(MIME),URI由4个属性来定义,分别是android:scheme,android:host,android:port,an……