Filtre d'intention à l'aide de chemin,pathPrefix, ou pathPattern

Mon test de la chaîne uri est

http://test.host.com/path/test.html?key1=val1&cle2=val2

Et j'ai l'intention de filtre dans le manifeste

A. régime & hôte (Il fonctionne mais je ne veux pas)

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <data
        android:scheme="http"
        android:host="test.host.com"
    />
    <category android:name="android.intent.category.BROWSABLE" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

B. A & chemin(pathPrefix, pathPattern) (Non travaillé)

    <data
        android:scheme="http"
        android:host="test.host.com"

        1. android:path="path/test.html" -> not worked (link to chrome broswer)
        2. android:path="path"           -> not worked (link to chrome broswer)
        3. android:pathPrefix="path"     -> not worked (link to chrome broswer)
        4. android:pathPattern="user/invite.*"  -> same (I do not know pattern)

    />

Je veux commencer mon application quand seulement (path/test.html),

OriginalL'auteur ChangUZ | 2013-10-16