Android 友盟社會化元件 分享實現

2021-08-31 00:25:34 字數 2688 閱讀 7594

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!

2023年2月10日 友盟一站式解決方案研究

友盟--移動開發者服務平台,近期小巫想實現乙個像一些應用實現多平台分享,例如lofter(網易輕部落格,如下圖)就實現了多平台分享,提供多個平台分享按鈕,讓使用者選擇自己想分享內容的平台,如果逐個來呼叫每個平台的api來實現的話那就太麻煩了,而剛好友盟就是為了方便開發者實現一站式分享和節省開發成本而誕生的,我稍微研究了一下子,發現確實聽方便,根據它提供的android 開發文件,我也實現整合到自己的應用當中去,下面根據自己的實現,總結一下。

可以到下面鏈結檢視友盟提供的開發文件

解決以下幾個疑問:

怎麼使用友盟sdk?

實現步驟:

1. 匯入必須的jar包

umeng_social_sdk.jar一定先要匯入,下面你需要哪個平台就匯入哪個平台相應的jar包

平台jar檔案

socialsdk_tencentwb_1.jar,socialsdk_tencentwb_2.jar

qq空間

socialsdk_qqzone_1.jar,socialsdk_qqzone_2.jar

socialsdk_weixin.jar

qqsocialsdk_qqzone_1.jar,socialsdk_qqzone_2.jar

開啟你的menifest.xml檔案,新增以下內容

android:name="com.umeng.socialize.view.shareactivity"

android:configchanges="orientation|keyboard"

android:launchmode="singletask"

android:nohistory="true"

android:theme="@style/theme.umdialog"

android:windowsoftinputmode="statevisible|adjustresize" >

activity>

android:name="com.tencent.tauth.authactivity"

android:launchmode="singletask"

android:nohistory="true" >

android:name="android.intent.action.view" />

android:name="android.intent.category.default" />

android:name="android.intent.category.browsable" />

android:scheme="tencent100424468" />

intent-filter>

activity>

android:name="com.tencent.plus.imageactivity" />

android:name="com.tencent.connect.common.assistactivity"

android:theme="@android:style/theme.translucent.notitlebar"

android:screenorientation="portrait">

activity>

android:value="*********************x" >

meta-data>

android:minsdkversion="8" />

android:name="android.permission.access_network_state" />

android:name="android.permission.access_wifi_state" />

android:name="android.permission.read_phone_state" />

android:name="android.permission.write_external_storage" />

android:name="android.permission.internet" />

android:name="android.permission.access_fine_location" />

android:name="android.permission.access_coarse_location" />

3. 匯入相應的資源檔案

4. 編寫**

開啟分享:

mcontroller.openshare(getactivity(), false);
5. 最終效果:

給我老師的人工智慧教程打call!

友盟 iOS 社會化元件

之前使用過,sharesdk。到了新公司,新公司使用友盟。友盟的挺簡單的。特分享幾個注意點 0 後來想到的,微博和友盟的繫結 友盟的使用是很簡單,但是,友盟的 好難用,有木有!啥思路 接著,吐槽。新增了乙個新的應用,居然,在我的應用裡找不到!但是,在這 可以找到,不過,第二天,就在我的應用找到了。神...

Android 友盟社會化元件 分享實現

2014年2月10日友盟一站式解決方案研究 友盟 移動開發者服務平台,近期小巫想實現乙個像一些應用實現多平台分享,例如lofter 網易輕部落格,如下圖 就實現了多平台分享,提供多個平台分享按鈕,讓使用者選擇自己想分享內容的平台,如果逐個來呼叫每個平台的api來實現的話那就太麻煩了,而剛好友盟就是為...

android 分享 使用友盟社會化元件

可以到下面鏈結檢視友盟提供的開發文件 解決以下幾個疑問 怎麼使用友盟sdk?實現步驟 1.匯入必須的jar包 umeng social sdk.jar一定先要匯入,下面你需要哪個平台就匯入哪個平台相應的jar包 平台jar檔案 socialsdk tencentwb 1.jar,socialsdk ...