私の意図フィルターは次のようになります。
<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:scheme="*"
android:host="*"
android:pathPattern="/pickup.jsp\?h=.+&p=.*&l=-?[0-9]+" />
</intent-filter>
Eclipse でパーサー エラーが発生します。
[com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper]
Parser exception for C:\projects\myapp\AndroidManifest.xml:
The reference to entity "p" must end with the ';' delimiter.
/path/pickup.jsp?h=handle&p=&l=4234
正規表現を使用して、任意のスキームと任意のホストの URL を一致させようとしています。それは可能ですか?もしそうなら、私はどのようにそれを一致させますか?