1. 程式人生 > >QQ分享成功後一直走onCancle方法解決

QQ分享成功後一直走onCancle方法解決

QQ分享到好友或者QQ空間之後回調回來始終走onCancel,查了資料發現是<data android:scheme="tencent1104827912" />的問題,
解決方法:<data android:scheme="tencent + appid" />

<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="tencent1104827912" /> </intent-filter> </activity>