通過傳送下面的intent:
intent intent = new intent(intent.action_send); //啟動分享傳送的屬性
intent.settype("text/plain"); //分享傳送的資料型別
intent.putextra(intent.extra_subject, "subject"); //分享的主題
intent.putextra(intent.extra_text, "extratext"); //分享的內容
intent.setflags(intent.flag_activity_new_task);//這個也許是分享列表的背景吧
fenxiangactivity.this.startactivity(intent.createchooser(intent, "分享"));//目標應用選擇對話方塊的標題
然後在manifest的activity下面加上:
android微博分享
首先說一下,微博分享該看 的文件 說明文件 e5.88.86.e4.ba.ab.e5.88.b0.e5.be.ae.e5.8d.9a 2 按照最新的文件一步步來就行了。我在這裡強調需要注意的地方。在授權的activity裡面一定要覆寫方法 override protected void onacti...
Android實現微博分享及其注意事項
接下來我就將我封裝好的源 粘出來例如以下 public class sinasharemanager 初始化微博分享 initsinashare context param sharecontent 分享的內容 public void sharebysina sharecontent shareco...
android指定分享到新浪微博
於 開源中國 一般的分享我們是這樣做的 private void share 這段 會彈出乙個可以用於分享的選擇器,然後選擇某一項來分享。intent intent new intent intent.action send intent.settype text plain packagemana...