我们使用的是安全浏览器,我们可以通过在策略中列出应用程序的URL方案来允许应用程序在浏览器中以链接的形式打开。我可以使用yammer:// url方案在iOS中打开Yammer应用程序。这不适用于安卓系统。有人知道安卓的Yammer URL方案吗?我在清单中发现了这一点,但我不确定如何将其转换为我需要从Android浏览器打开Yammer应用程序的方案。
<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="yammer"
Android:hosts="threads"/>发布于 2014-11-27 19:46:59
您可以尝试如下所示:
Intent url_intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("yammer://threads"));
url_intent.addCategory(Intent.CATEGORY_BROWSABLE);
startActivity(url_intent);这适用于打开Yammer应用程序
https://stackoverflow.com/questions/26046274
复制相似问题