<intent-filter>
<action android:name="android.intent.action.MAIN" />
<data android:mimeType="text/plain"
android:scheme="tel"
android:port="8080"
android:host="www.baidu.com"
android:path="ddd"
android:pathPrefix="www"
android:pathPattern="qqq"
/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
Intent in = new Intent;
it.setData(new Uri("tel:"));
it.setType ===> mimeType
注意上面两个方法有冲突如果需要同时设置data和mimeType那么需要使用
intent.setDataAndType(data, type)
否则会被覆盖