android 分享到QQ空间的所有操作



<!-- 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, " 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());
}
  };

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值