我想在我的Android应用中添加“分享此应用”菜单项。我知道如何创建一个Intent并共享文本等。但我想知道在共享应用程序时应该设置哪种内容类型。
内容会像http://play.google.com/apps/org.example.appname
一样,还是其他内容。
当我尝试在Google上搜索时,我最终得到了“MyAppSharer”和其他类似的链接。
答案 0 :(得分:1)
我能够理解的是,您必须使用Intent
或您应用的Google Play网址投放http://play.google.com/apps/org.example.appname
。
意图操作应为Intent.ACTION_SEND
,类型应指定为"text/plain"
。
This article表示要使用
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.example.android"));
startActivity(intent);
如果您认为有更好的方法,请随意添加作为答案。