分享到 :

是否支持分享到QQ空间

A、接口使用场景
    判断当前是否支持第三方分享到QQ空间。

B、接口方法
    public static boolean com.tencent.tauth.Tencent.isSupportPushToQZone(Context context)

C、参数说明
    调用接口的参数说明如下:

参数参数说明
context调用者context。

D、返回结果
     true:支持分享。
     false: 不支持分享。

E、示例代码
    调用是否支持分享到QZone接口的示例代码如下:

if (mTencent.isSupportPushToQZone(MainActivity.this)) {
         Toast.makeText(MainActivity.this, "支持分享到QZone", Toast.LENGTH_SHORT).show();
} else {
         Toast.makeText(MainActivity.this, "不支持分享到QZone", Toast.LENGTH_SHORT).show();
}
返回顶部