呼叫android系統自帶的方式分享:
簡單的分享文字:
intent intent=new intent(intent.action_send);
intent.settype("image/*");
intent.putextra(intent.extra_subject, "分享");
//分享的文字內容
intent.putextra(intent.extra_text, "終於可以了!!!");
intent.setflags(intent.flag_activity_new_task);
startactivity(intent.createchooser(intent, gettitle()));
bgimg0 = getimagefromassetsfile("cat_blink/cat_blink0000.png");
/**
* 從assets中讀取
*/ private bitmap getimagefromassetsfile(string filename)
catch (ioexception e)
return image;
}
/**
* 分享功能
* * @param context
* 上下文
* @param activitytitle
* activity的名字
* @param msgtitle
* 訊息標題
* @param msgtext
* 訊息內容
* @param imgpath
* 路徑,不分享則傳null
*/ public void sharemsg(string activitytitle, string msgtitle, string msgtext,
string imgpath) else
} intent.putextra(intent.extra_subject, msgtitle);
intent.putextra(intent.extra_text, msgtext);
intent.setflags(intent.flag_activity_new_task);
startactivity(intent.createchooser(intent, activitytitle));
}
系統的分享,你想要分享需要先把存到本地才能分享
還有一種就是用第三方share來進行分享
一下官網複製的,就介紹下。)
sharesdk是一種社會化分享元件,為ios、
android
廣州掌淘網路科技****開發。
Android分享 呼叫系統自帶的分享功能
這裡就記錄下第一種辦法。intent textintent new intent intent.action send textintent.settype text plain textintent.putextra intent.extra text,這是一段分享的文字 startactivit...
Android開發 微信分享功能
官方文件已經介紹的很詳細了,不過有一些地方,我們在開發的時候需要注意。說明以下兩塊 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 public void onresp baseresp resp toast.maketext ...
原創 Android 實現微博分享功能
通過傳送下面的intent intent intent new intent intent.action send 啟動分享傳送的屬性 intent.settype text plain 分享傳送的資料型別 intent.putextra intent.extra subject,subject 分...