本文介绍了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意图行动,共享的指向您的应用程序。

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的份额应用威盛等的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 03:42