0

我有一个包含以下过滤器的活动:

 <intent-filter>
        <category android:name="android.intent.category.DEFAULT" />

        <action android:name="android.intent.action.VIEW" />

        <data
            android:host="com.ibs.shababeek.search"
            android:path="/posts/*"
            android:scheme="content" />
    </intent-filter>

linkfiy 文本触发了这个意图:

act=android.intent.action.VIEW dat=content://com.ibs.shababeek.search/posts/#test

但它一直告诉我:没有找到处理意图的活动

4

1 回答 1

1
android:path="/posts/*"

你可能想要android:pathPattern,不是android:path

于 2012-11-07T15:12:52.880 回答