2013-08-16 65 views
-1

我正在開發一個移動應用程序,我需要一個意圖。鈦股份與頁面鏈接意向

目標是與圖像共享鏈接。 像這個例子:

enter image description here

有一種方法,使之?

因爲只有「text/plain」類型,我不知道如何放置圖像!

我正在用Titanium(Javascript)開發應用程序,但也歡迎Java(Android)示例!

謝謝大家!

回答

0

你試過這個嗎? 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")); 
0

我對你想要做什麼感到有點困惑。什麼是共享鏈接,以及什麼?外部鏈接將打開你的應用程序?你的應用需要啓動另一個應用?請詳細說明...