示例#1
0
 public void btnOnShare(int idx)
 {
     PlatformType[] types = { PlatformType.WechatPlatform, PlatformType.WeChatMoments, PlatformType.QZone, PlatformType.SinaWeibo };
     if (SceneMgr.getInstance()._isInQuestionView)
     {
         ShareTools.getCurShareTools().shareByTypeWithHide(types[idx]);
     }
     else
     {
         ShareTools.getCurShareTools().shareByTypeWithoutCapture(types[idx]);
     }
 }
示例#2
0
 public void btnOnShare(int idx)
 {
     PlatformType[] types = { PlatformType.WechatPlatform, PlatformType.WeChatMoments, PlatformType.QZone, PlatformType.SinaWeibo };
     ShareTools.getCurShareTools().shareByType(types[idx]);
 }