Android的份额应用威盛等 [英] Android share app VIA etc

查看:163
本文介绍了Android的份额应用威盛等的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我看到许多应用程序这个..当您单击菜单上,比其他的菜单显示出来,并可以通过E-mail,微博,蓝牙,Facebook等

I saw in many apps this.. When you click on a menu, than an other menu show up, and you can share your app VIA e-mail, twitter, bluetooth, facebook, etc.

我怎样才能做到这一点?

How can i do this?

推荐答案

您可以使用SEND意图行动,共享的市场URI 指向您的应用程序。

You can use the SEND intent action to share a market uri pointing to your app.

选择器将列出所有已安装的应用程序,已宣布它可以共享数据。

The chooser will list any installed app that has declared it can share data.

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");

intent.putExtra(Intent.EXTRA_SUBJECT, "App Name");
intent.putExtra(Intent.EXTRA_TEXT, "Check out this cool app http://market.android.com/details?id=com.example.yourpackagename");

Intent chooser = Intent.createChooser(intent, "Tell a friend about App Name");
startActivity(chooser);

这篇关于Android的份额应用威盛等的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆