Android調(diào)用系統(tǒng)分享的實(shí)現(xiàn)

閱讀提醒

本文只是關(guān)于如何實(shí)現(xiàn)Android系統(tǒng)分享狭莱,并非第三方SDK實(shí)現(xiàn)方法

Android開發(fā)時(shí)通過startActivity發(fā)送action為Intent.ACTION_SEND的Intent即很容易就可以實(shí)現(xiàn)系統(tǒng)分享功能迷守,舉個(gè)簡單例子看看:

Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Here is the Shared text.");
//切記需要使用Intent.createChooser,否則會(huì)出現(xiàn)別樣的應(yīng)用選擇框熟吏,您可以試試
shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box");
startActivity(shareIntent);

從例子中,可以發(fā)現(xiàn)實(shí)現(xiàn)系統(tǒng)分享主要由三部分Action袜腥、Extras和Type組成茬贵。首先將Intent的cation設(shè)置為Intent.ACTION_SEND,其次根據(jù)分享的內(nèi)容設(shè)置不同的Type沼头,然后根據(jù)不同的社交平臺設(shè)置相關(guān)Extras爷绘,最后將Intent發(fā)送出去即可完成系統(tǒng)分享。
以下列舉幾種分享類型:

  • 分享文本內(nèi)容
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Here is the Shared text.");
//切記需要使用Intent.createChooser进倍,否則會(huì)出現(xiàn)別樣的應(yīng)用選擇框土至,您可以試試
shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box");
startActivity(shareIntent);
  • 分享圖片
//將mipmap中圖片轉(zhuǎn)換成Uri
Uri imgUri = Uri.parse("android.resource://" + getApplicationContext().getPackageName() + "/" +R.mipmap.ic_launcher);

Intent shareIntent = new Intent(); 
shareIntent.setAction(Intent.ACTION_SEND); 
//其中imgUri為圖片的標(biāo)識符
shareIntent.putExtra(Intent.EXTRA_STREAM, imgUri); 
shareIntent.setType("image/*"); 
//切記需要使用Intent.createChooser,否則會(huì)出現(xiàn)別樣的應(yīng)用選擇框背捌,您可以試試
shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box");
startActivity(shareIntent); 
  • 分享多張圖片
Uri imgUri = Uri.parse("android.resource://" + getApplicationContext().getPackageName() + "/" +R.mipmap.ic_launcher);

ArrayList<Uri> imgUris = new ArrayList<Uri>();
imgUris.add(imgUri);  //其中imgUri1為第一張圖片的標(biāo)識符
imgUris.add(imgUri); //其中imgUri2為第二張圖片的標(biāo)識符

Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
//其中fileUri為文件的標(biāo)識符
shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imgUris);
shareIntent.setType("image/*");
//切記需要使用Intent.createChooser毙籽,否則會(huì)出現(xiàn)別樣的應(yīng)用選擇框,您可以試試
shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box");
startActivity(shareIntent);
  • 分享郵件
Uri imgUri = Uri.parse("android.resource://" + getApplicationContext().getPackageName() + "/" +R.mipmap.ic_launcher);

Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
//其中imgUri為圖片的標(biāo)識符
shareIntent.putExtra(Intent.EXTRA_STREAM, imgUri);
shareIntent.setType("image/*");
//設(shè)置郵件主題
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "Here is the email subject");
//郵件內(nèi)容
shareIntent.putExtra(Intent.EXTRA_TEXT, "Here is the email content");
//切記需要使用Intent.createChooser毡庆,否則會(huì)出現(xiàn)別樣的應(yīng)用選擇框坑赡,您可以試試
shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box");
startActivity(shareIntent);
//EXTRA_BCC:存放郵件密送人地址的字符串?dāng)?shù)組∶纯梗 
//EXTRA_CC:存放郵件抄送人地址的字符串?dāng)?shù)組毅否。
//EXTRA_EMAIL:存放郵件地址的字符串?dāng)?shù)組
問題拓展

1.如何將自己的應(yīng)用能夠顯示在系統(tǒng)分享的應(yīng)用選擇框中?
根據(jù)以上介紹蝇刀,我們可以在應(yīng)用清單文件中使用<intent-filter>來完成螟加;

<activity
  android:name=".ShareHandleActivity"
  android:label="@string/app_name" >
    <intent-filter>
      <action android:name="android.intent.action.SEND" />
      <category android:name="android.intent.category.DEFAULT" />
      <!-- 根據(jù)分享類型的需要進(jìn)行修改 -->
      <data android:mimeType="text/plain" />
     </intent-filter>
 </activity>

2.如何監(jiān)聽在應(yīng)用選擇框中,選擇了那個(gè)應(yīng)用?
需要采用BroadcastReceiver來實(shí)現(xiàn):(該方法在部分手機(jī)上可以實(shí)現(xiàn)捆探,并且需要API Level大于等于22)

  • 創(chuàng)建BroadcastReceiver
public class ShareDoneReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        for(String key:intent.getExtras().keySet()){
            try {
                ComponentName componentInfo = (ComponentName) intent.getExtras().get(key);
                PackageManager packageManager = context.getPackageManager();
                String appName = (String) packageManager.getApplicationLabel(packageManager.getApplicationInfo(componentInfo.getPackageName(), PackageManager.GET_META_DATA));
                Log.i("Selected", appName);
            } catch (Exception e) {
            }
        }
    }
}
  • AndroidManifest中注冊廣播
<receiver android:name=".ShareDoneReceiver"/>
  • 獲取廣播進(jìn)行分享
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Here is the Shared text.");
Intent receiver = new Intent(this, ShareDoneReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, receiver, PendingIntent.FLAG_UPDATE_CURRENT);
//切記需要使用Intent.createChooser然爆,否則會(huì)出現(xiàn)別樣的應(yīng)用選擇框,您可以試試
shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box", pendingIntent.getIntentSender());
startActivity(shareIntent);

3.如何為制定應(yīng)用設(shè)置分享type黍图?

List<Intent> targetIntents = new ArrayList<Intent>();

//獲取所有支持ACTION_SEND的應(yīng)用
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
PackageManager pm = getPackageManager();
List<ResolveInfo> resInfos = pm.queryIntentActivities(shareIntent, 0);
//對目標(biāo)引用進(jìn)行判斷
if(resInfos != null && resInfos.size() > 0){
    for(ResolveInfo info:resInfos){
         Intent target = new Intent(Intent.ACTION_SEND);
         //需要知道制定應(yīng)用的package name
         if ("com.tencent.mm".equals(info.activityInfo.packageName)) {
               target.setType("text/plain");
         }else{
               target.setType("image/*");
               //其中imgUri為圖片的標(biāo)識符
               target.putExtra(Intent.EXTRA_STREAM, imgUri);
         }
         target.putExtra(Intent.EXTRA_TEXT, "Here is the email content");
         target.setComponent(new ComponentName( info.activityInfo.packageName, info.activityInfo.name));
         targetIntents.add(target);
     }
}
//創(chuàng)建應(yīng)用選擇框
Intent chooserIntent = Intent.createChooser(targetIntents.remove(0), "");
chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, targetIntents.toArray(new Parcelable[]{}));
startActivity(chooserIntent);

4.如何只顯示指定的應(yīng)用曾雕?

List<Intent> targetIntents = new ArrayList<Intent>();

//獲取所有支持ACTION_SEND的應(yīng)用
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
PackageManager pm =getPackageManager();
List<ResolveInfo> resInfos = pm.queryIntentActivities(shareIntent, 0);
//對目標(biāo)引用進(jìn)行判斷
if(resInfos != null && resInfos.size() > 0){
  for(ResolveInfo info:resInfos){
    if("com.netease.mobimail".equals(info.activityInfo.packageName)
        || "com.google.android.talk".equals(info.activityInfo.packageName)){

      Intent target = new Intent(Intent.ACTION_SEND);
      target.setType("text/plain");
      target.putExtra(Intent.EXTRA_TEXT, "Here is the email content");
      target.setComponent(new ComponentName( info.activityInfo.packageName, info.activityInfo.name));
      targetIntents.add(target);
    }
  }
}
//創(chuàng)建應(yīng)用選擇框
Intent chooserIntent = Intent.createChooser(targetIntents.remove(0), "");
chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, targetIntents.toArray(new Parcelable[]{}));
startActivity(chooserIntent);
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市助被,隨后出現(xiàn)的幾起案子剖张,更是在濱河造成了極大的恐慌,老刑警劉巖揩环,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件搔弄,死亡現(xiàn)場離奇詭異,居然都是意外死亡丰滑,警方通過查閱死者的電腦和手機(jī)顾犹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來褒墨,“玉大人蹦渣,你說我怎么就攤上這事∶餐ぃ” “怎么了柬唯?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長圃庭。 經(jīng)常有香客問我锄奢,道長,這世上最難降的妖魔是什么剧腻? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任拘央,我火速辦了婚禮,結(jié)果婚禮上书在,老公的妹妹穿的比我還像新娘灰伟。我一直安慰自己,他們只是感情好儒旬,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布栏账。 她就那樣靜靜地躺著,像睡著了一般栈源。 火紅的嫁衣襯著肌膚如雪挡爵。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天甚垦,我揣著相機(jī)與錄音茶鹃,去河邊找鬼涣雕。 笑死,一個(gè)胖子當(dāng)著我的面吹牛闭翩,可吹牛的內(nèi)容都是我干的挣郭。 我是一名探鬼主播,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼疗韵,長吁一口氣:“原來是場噩夢啊……” “哼丈屹!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起伶棒,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎彩库,沒想到半個(gè)月后肤无,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡骇钦,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年宛渐,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片眯搭。...
    茶點(diǎn)故事閱讀 38,100評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡窥翩,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出鳞仙,到底是詐尸還是另有隱情寇蚊,我是刑警寧澤,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布棍好,位于F島的核電站仗岸,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏借笙。R本人自食惡果不足惜扒怖,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望业稼。 院中可真熱鬧盗痒,春花似錦、人聲如沸低散。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽熔号。三九已至看成,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間跨嘉,已是汗流浹背川慌。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工吃嘿, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人梦重。 一個(gè)月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓兑燥,卻偏偏與公主長得像,于是被迫代替她去往敵國和親琴拧。 傳聞我的和親對象是個(gè)殘疾皇子降瞳,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容