我正在开发一个 phongap 构建应用程序。我需要我的应用出现在 android 浏览器的共享菜单中。我已经看到这个Make Android app listen to shared links但我在 phonegap-build 上并且我没有清单......有办法做到这一点吗?我还需要处理对我的应用程序的相对调用:)
谢谢你们
托马索
我正在开发一个 phongap 构建应用程序。我需要我的应用出现在 android 浏览器的共享菜单中。我已经看到这个Make Android app listen to shared links但我在 phonegap-build 上并且我没有清单......有办法做到这一点吗?我还需要处理对我的应用程序的相对调用:)
谢谢你们
托马索
我不知道 phonegap 是如何工作的,但如果你有一个活动,那么你可以使用以下代码:
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "A text to share");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, "Share via"));
在方法shareList
(第 406 行)中,您有一个工作示例。