本文整理匯總了Java中cn.sharesdk.framework.Platform.removeAccount方法的典型用法代碼示例。如果您正苦於以下問題:Java Platform.removeAccount方法的具體用法?Java Platform.removeAccount怎麽用?Java Platform.removeAccount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cn.sharesdk.framework.Platform
的用法示例。
在下文中一共展示了Platform.removeAccount方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: updateUserInfoFromLocal
import cn.sharesdk.framework.Platform; //導入方法依賴的package包/類
/**
* 從本地更新用戶信息 - 登錄成功後保存到偏好設置
*/
public void updateUserInfoFromLocal() {
// 移除第三方授權
Platform wechat = ShareSDK.getPlatform(Wechat.NAME);
if (wechat.isAuthValid()) {
wechat.removeAccount(true);
}
Platform qq = ShareSDK.getPlatform(QQ.NAME);
if (qq.isAuthValid()) {
qq.removeAccount(true);
}
// 內存緩存
UserBean.userAccount = this;
// 磁盤緩存
encode();
}
示例2: unauthorize
import cn.sharesdk.framework.Platform; //導入方法依賴的package包/類
public static void unauthorize(Context context, String platformName) {
ensureInit(context);
Platform platform = ShareSDK.getPlatform(context, platformName);
if (platform.isValid()) platform.removeAccount();
}
示例3: unregisterThirdPartyAccount
import cn.sharesdk.framework.Platform; //導入方法依賴的package包/類
public void unregisterThirdPartyAccount(Platform plat, CheckedTextView ctvName) {
plat.removeAccount();
ctvName.setChecked(false);
ctvName.setText(R.string.not_yet_authorized);
}
示例4: onError
import cn.sharesdk.framework.Platform; //導入方法依賴的package包/類
@Override
public void onError(Platform platform, int i, Throwable throwable) {
platform.removeAccount(true);
}
示例5: onCancel
import cn.sharesdk.framework.Platform; //導入方法依賴的package包/類
@Override
public void onCancel(Platform platform, int i) {
platform.removeAccount(true);
}