url http://javaexample.com/#/topics是有效的 url?
我尝试使用以下方法在应用程序中深层链接上述网址:
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http"
android:host="javaexample.com"
android:pathPrefix="/#/topics" />
</intent-filter>
但终端抛出消息 -
活动未启动,无法解析 Intent { act=android.intent.action.VIEW dat= http://javaexample.com/ ...
如果路径中有#,那么url http://javaexample.com/#/topics是否不是有效的 url?