Titanium共享Intent与页面链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Titanium共享Intent与页面链接相关的知识,希望对你有一定的参考价值。
我正在开发一个移动应用程序,我需要制定一个意图。
目标是与图像共享链接。像这个例子:
有办法实现吗?
因为只有“text / plain”类型,我不知道如何放置图像!
我正在使用Titanium(javascript)开发应用程序,但欢迎使用Java(android)示例!
谢谢你们!
答案
你试过这个吗? http://developer.appcelerator.com/question/149385/sharing-image-via-androidintent
var file = Ti.Filesystem.getFile(Ti.Filesystem.externalStorageDirectory,'viaInstaCheckIn.jpeg');
var B = file.read();
var shareIntent = Ti.Android.createIntent({
action: Ti.Android.ACTION_SEND,
type: "image/jpeg"
});
shareIntent.putExtra(Ti.Android.EXTRA_TITLE, "Photo via fb.com/InstaCheckInHD");
shareIntent.putExtra(Ti.Android.EXTRA_TEXT, "Photo By @InstaCheckInHD");
shareIntent.putExtraUri(Ti.Android.EXTRA_STREAM, B.nativePath);
Ti.Android.currentActivity.startActivity(Ti.Android.createIntentChooser(shareIntent, "Share image"));
另一答案
我对你要做的事情感到有些困惑。什么是共享链接,以及什么?外部链接将打开您的应用程序?你的应用需要启动另一个应用程序?请详细说明...
以上是关于Titanium共享Intent与页面链接的主要内容,如果未能解决你的问题,请参考以下文章