本文整理汇总了Java中com.sina.weibo.sdk.api.share.IWeiboHandler类的典型用法代码示例。如果您正苦于以下问题:Java IWeiboHandler类的具体用法?Java IWeiboHandler怎么用?Java IWeiboHandler使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IWeiboHandler类属于com.sina.weibo.sdk.api.share包,在下文中一共展示了IWeiboHandler类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onNewIntent
import com.sina.weibo.sdk.api.share.IWeiboHandler; //导入依赖的package包/类
@Override
public void onNewIntent(Activity activity) {
// 从当前应用唤起微博并进行分享后,返回到当前应用时,需要在此处调用该函数
// 来接收微博客户端返回的数据;执行成功,返回 true,并调用
// {@link IWeiboHandler.Response#onResponse};失败返回 false,不调用上述回调
if (!(activity instanceof IWeiboHandler.Response)) {
LogUtils.e(TAG, "微博接受回调的IWeiboHandler.Response必须是发起分享的Activity");
return;
}
IWeiboHandler.Response shareResponse = (IWeiboHandler.Response) activity;
mWeiboShareAPI.handleWeiboResponse(activity.getIntent(), shareResponse);
}
示例2: shareToWeiboCallback
import com.sina.weibo.sdk.api.share.IWeiboHandler; //导入依赖的package包/类
public static void shareToWeiboCallback(Intent intent, IWeiboHandler.Response response) {
SocialShareProxy.shareToWeiboCallback(intent, response);
}
示例3: onNewIntent
import com.sina.weibo.sdk.api.share.IWeiboHandler; //导入依赖的package包/类
public void onNewIntent(Intent intent, IWeiboHandler.Response response) {
if(mWeiboShareAPI != null) {
mWeiboShareAPI.handleWeiboResponse(intent, response);
}
}
示例4: shareToWeiboCallback
import com.sina.weibo.sdk.api.share.IWeiboHandler; //导入依赖的package包/类
/**
* 分享到微博结果回调
*
* @param intent intent
* @param response response
*/
public static void shareToWeiboCallback(Intent intent, IWeiboHandler.Response response) {
WeiboShareProxy.getInstance().handleWeiboResponse(intent, response);
}
示例5: handleWeiboResponse
import com.sina.weibo.sdk.api.share.IWeiboHandler; //导入依赖的package包/类
/**
* 处理分享的回调
*
* @param intent
* @param response
*/
public void handleWeiboResponse(Intent intent, IWeiboHandler.Response response) {
if (null != intent) {
mWeiboShareAPI.handleWeiboResponse(intent, response);
}
}