我在commonsware 样本中查找了以下意图过滤器的活动
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="www.this-so-does-not-exist.com"
android:path="/something"
android:scheme="http" />
</intent-filter>
但是,相同的意图过滤器在应用于广播接收器时不起作用。
您能否指出是否可以将其应用于广播接收器,如果可以,在哪里寻找修复?
谢谢。