从浏览器地址栏自定义Url android无效

时间:2013-02-19 08:48:42

标签: android intentfilter custom-url

我已经实现了Android自定义URl方案,当我发送要作为邮件打开的链接然后单击它时它工作正常。

当我在移动浏览器的地址栏中键入相同的地址时,它不起作用,而地址栏反过来又会发现页面未找到错误。 这是我的意图过滤器 -

 <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="http" android:host="myappname.com"/>
 </intent-filter>

如果我在网络浏览器中输入http://myappname.com,我还需要指定其他内容吗?是否有些手机/浏览器不支持此类行为?或者这根本不可能?

任何帮助将不胜感激。 提前谢谢。

0 个答案:

没有答案