新浪微博、微信朋友圈、qq空间分享---qq空间分享
程序员文章站
2022-06-26 13:27:43
...
http://wiki.open.qq.com/wiki/mobile/SDK下载
一、清单文件配置
<!-- QZone分享必须加上下面两个activity -->
<activity
android:name="com.tencent.connect.common.AssistActivity"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
<activity
android:name="com.tencent.tauth.AuthActivity"
android:launchMode="singleTask"
android:noHistory="true" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="tencent222222" /> <!--Appid:222222 这里需要写上自己的APPID-->
<!-- 100380359 100381104 222222 -->
</intent-filter>
</activity>
二、oncreate中添加如下代码
<pre name="code" class="java">//QQ
mTencent = Tencent.createInstance(Constant.QQKJ_APPID, this);
三、调用分享
/** * qq空间分享 * */ public void toShareQQKJ(){ final Bundle params = new Bundle(); params.putInt(QzoneShare.SHARE_TO_QZONE_KEY_TYPE, QzoneShare.SHARE_TO_QZONE_TYPE_IMAGE_TEXT);//类型 params.putString(QzoneShare.SHARE_TO_QQ_TITLE, "霸气的小明");//标题 params.putString(QzoneShare.SHARE_TO_QQ_SUMMARY, "霸气的呵呵小明 ");//概要 params.putString(QzoneShare.SHARE_TO_QQ_TARGET_URL, "http://www.beehood.com"); //下面这个必须加上 不然无法调动 qq空间 ArrayList<String> imageUrls = new ArrayList<String>(); imageUrls.add("http://www.beehood.com/uploads/allimg/150310/2-150310142133.jpg"); params.putStringArrayList(QzoneShare.SHARE_TO_QQ_IMAGE_URL, imageUrls); doShareToQzone(params); } /** * 用异步方式启动分享 * @param params */ private void doShareToQzone(final Bundle params) { new Thread(new Runnable() { @Override public void run() { // TODO Auto-generated method stub mTencent.shareToQzone(SettingActivity.this, params, qZoneShareListener); } }).start(); } /** * 分享监听 */ IUiListener qZoneShareListener = new IUiListener() { @Override public void onCancel() { // Toast.makeText(SettingActivity.this, "取消", 0).show(); Log.i("QZone", "取消分享"); } @Override public void onError(UiError e) { Log.i("QZone", "出错:"+e.errorMessage); // TODO Auto-generated method stub // Toast.makeText(SettingActivity.this, "onError: " + e.errorMessage, 0).show(); // Util.toastMessage(QZoneShareActivity.this, "onError: " + e.errorMessage, "e"); } @Override public void onComplete(Object response) { Log.i("QZone", "完成分享"); // TODO Auto-generated method stub // Toast.makeText(SettingActivity.this, "onComplete: " + response.toString(), 0).show(); // Util.toastMessage(QZoneShareActivity.this, "onComplete: " + response.toString()); } };
具体详细可以看看下面这个blog