我希望我的应用程序可以轻松扩展

时间:2011-07-07 20:09:07

标签: android bluetooth

如何将拥有该下载链接的用户与未拥有该用户的用户进行通信? 如果他们只有他们的Android手机。蓝牙?我会寄一张联系卡吗?

配对的方法不那么麻烦吗?

1 个答案:

答案 0 :(得分:5)

寻找分享意图。 Here是一个例子:

Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Some text");
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Some other text");

startActivity(Intent.createChooser(shareIntent, "Title for chooser"));