用Intent分享的代碼

  1. private void share(String content, Uri uri){  spa

  2.     Intent shareIntent = new Intent(Intent.ACTION_SEND);   it

  3.     if(uri!=null){  im

  4.         shareIntent.putExtra(Intent.EXTRA_STREAM, uri);  margin

  5.         shareIntent.setType("image/*");   di

  6.         //當用戶選擇短信時使用sms_body取得文字  vi

  7.         shareIntent.putExtra("sms_body", content);  co

  8.     }else{  background

  9.         shareIntent.setType("text/plain");   new

  10.     }  void

  11.     shareIntent.putExtra(Intent.EXTRA_TEXT, content);  

  12.     //自定義選擇框的標題  

  13.     //startActivity(Intent.createChooser(shareIntent, "邀請好友"));  

  14.     //系統默認標題  

  15.     startActivity(shareIntent);  

  16. }  

相關文章
相關標籤/搜索