在pathprefix中使用哈希标记(#)来匹配意图过滤器

时间:2015-09-04 12:40:14

标签: android android-intent intentfilter

我有一个网址https://app.inetrack.com/#home

在我的清单中:

<error-page>
  <error-code>400</error-code>
  <location>/WEB-INF/jsp/errorpages/ErrorPage400.jsp</location>
</error-page>
<error-page>
  <error-code>401</error-code>
  <location>/WEB-INF/jsp/errorpages/ErrorPage401.jsp</location>
</error-page>
<error-page>
  <error-code>403</error-code>
  <location>/WEB-INF/jsp/errorpages/ErrorPage403.jsp</location>
</error-page>
<error-page>
  <error-code>404</error-code>
  <location>/WEB-INF/jsp/errorpages/ErrorPage404.jsp</location>
</error-page>
<error-page>
  <error-code>500</error-code>
  <location>/WEB-INF/jsp/errorpages/ErrorPage500.jsp</location>
</error-page>

如何设置pathprefix以匹配此URL?它只在没有hashmark的情况下工作。有可能以某种方式逃脱吗?

我试图像这里一样逃避它: http://developer.android.com/guide/topics/manifest/data-element.html#path

0 个答案:

没有答案