您好,登錄后才能下訂單哦!
這篇文章給大家介紹Android中怎么接入Google+分享功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
Android使用Google+分享功能
1.首先將<android-sdk-folder>/extras/google/google_play_services 導入到Eclipse中
我將google-play-services_lib復制到了新建的thirdlib文件中然后導入的,大家可以直接導入。
如果沒有這個工程首先更新到最新的ADT,然后打開Android SDK Manager進行下載
2.然后將其作為 google-play-services_lib作為lib工程add到我們的工程上
3.主要的分享代碼:
//google+分享 public void doGooglePlusShare(Activity mContext) { // 判斷是否安裝Google Service if (GooglePlayServicesUtil.isGooglePlayServicesAvailable(mContext) == ConnectionResult.SUCCESS) { Intent shareIntent = new PlusShare.Builder(mContext).setType("text/plain") .setText("test share").setContentUrl(Uri.parse("www.baidu.com")).getIntent(); mContext.startActivityForResult(shareIntent, 0); }else{ Toast.makeText(mContext, "Please install Google Service", 0).show(); } }
在Button的點擊時間種調用這個方法
4.配置AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.googleplusshare" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="com.example.googleplusshare.MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> </application> <uses-permission android:name="android.permission.INTERNET"/> </manifest>
關于Android中怎么接入Google+分享功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。