下载
<!-- 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-- >
<!-- 100380359 100381104 222222 -->
</intent-filter>
</activity>
oncreate中
//QQ
mTencent = Tencent.createInstance(Constant.QQKJ_APPID, this);
/** * qq空间分享 * @param v */ 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, " "); //以下这个必须加上 不然无法调动 qq空间 ArrayList<String> imageUrls = new ArrayList<String>(); imageUrls.add(" "); 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()); }
};