0
내 안드로이드 앱은 특정 문자열을 포함하는 URI ('#'기호 뒤에 URI의 일부)를 열어야합니다. 예를 들어URI 조각의 특정 문자열에 대한 인 텐트 필터
:
나는 다음과 같은 의도 필터를 시도했지만 작동하지 않습니다 :
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="http" android:host="*" android:pathPattern="*foo"/>
</intent-filter>
잘못 무엇입니까?