Intent中的action必须命中
android.intent.category.DEFAULT:
Android把所有传给startActivity()的隐式意图当作他们包含至少一个类别:"android.intent.category.DEFAULT",因此,想要接收隐式意图的活动必须在它们的意图过滤器中包含"android.intent.category.DEFAULT"。
android.intent.category.BROWSABLE
首先
- <data android:mimeType="text/plain"
- android:host="www.xxx.com"
- android:path="/aa/bb"
- android:pathPattern="/b/*"
- android:port="80"
- android:scheme="http" />