通过 Android 公开分享照片的在线服务?

发布于 2024-10-26 22:58:23 字数 1539 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叹沉浮 2024-11-02 22:58:23

查看 Android PhotoStream 示例应用程序。一切都在那里解释

Look into Android PhotoStream sample application. Everything is explained there

梦里梦着梦中梦 2024-11-02 22:58:23

不错的应用程序..

为什么不能启动一组处理照片/发布照片的应用程序,而不是将照片发布到您选择的网站?

正如 barmaley 所建议的,Android PhotoStream 就是其中之一。

打开文本编辑器的示例代码位于此处。

public void share(String subject,String text) {
 final Intent intent = new Intent(Intent.ACTION_SEND);

 intent.setType("text/plain");
 intent.putExtra(Intent.EXTRA_SUBJECT, subject);
 intent.putExtra(Intent.EXTRA_TEXT, text);

 startActivity(Intent.createChooser(intent, getString(R.string.share)));
}

有关设置意图的 MIME 类型的更多信息,请参阅此处:

http://developer.android.com/reference/android/content/Intent.html#setType%28java.lang.String%29

Nice app..

Instead of publishing the photo to a website of your choice, why can't you launch a set of applications that handles photos/publishes photos?

As suggested by barmaley, Android PhotoStream is one of them.

A sample coding for opening a text Editor is here..

public void share(String subject,String text) {
 final Intent intent = new Intent(Intent.ACTION_SEND);

 intent.setType("text/plain");
 intent.putExtra(Intent.EXTRA_SUBJECT, subject);
 intent.putExtra(Intent.EXTRA_TEXT, text);

 startActivity(Intent.createChooser(intent, getString(R.string.share)));
}

Refer here for more about setting MIME Types for Intents:

http://developer.android.com/reference/android/content/Intent.html#setType%28java.lang.String%29

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文