|
@@ -5,7 +5,6 @@ import android.content.Context;
|
|
|
import android.content.Intent;
|
|
import android.content.Intent;
|
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.PackageManager;
|
|
|
import android.net.Uri;
|
|
import android.net.Uri;
|
|
|
-import android.os.Build;
|
|
|
|
|
import android.os.Bundle;
|
|
import android.os.Bundle;
|
|
|
import android.text.TextUtils;
|
|
import android.text.TextUtils;
|
|
|
import android.view.Gravity;
|
|
import android.view.Gravity;
|
|
@@ -51,6 +50,7 @@ import com.sheep.gamegroup.model.entity.WebParams;
|
|
|
import com.sheep.gamegroup.model.entity.WebviewEntity;
|
|
import com.sheep.gamegroup.model.entity.WebviewEntity;
|
|
|
import com.sheep.gamegroup.model.entity.XianWanEntity;
|
|
import com.sheep.gamegroup.model.entity.XianWanEntity;
|
|
|
import com.sheep.gamegroup.model.util.SheepSubscriber;
|
|
import com.sheep.gamegroup.model.util.SheepSubscriber;
|
|
|
|
|
+import com.sheep.gamegroup.module.ad_htxd.model.ArticleAd;
|
|
|
import com.sheep.gamegroup.module.find.activity.ActMediaChoose;
|
|
import com.sheep.gamegroup.module.find.activity.ActMediaChoose;
|
|
|
import com.sheep.gamegroup.module.login.ChangePasswordAct;
|
|
import com.sheep.gamegroup.module.login.ChangePasswordAct;
|
|
|
import com.sheep.gamegroup.module.login.LoginAct;
|
|
import com.sheep.gamegroup.module.login.LoginAct;
|
|
@@ -160,8 +160,6 @@ import com.sheep.jiuyan.samllsheep.SheepApp;
|
|
|
import com.sheep.jiuyan.samllsheep.service.AutoCheckService;
|
|
import com.sheep.jiuyan.samllsheep.service.AutoCheckService;
|
|
|
import com.sheep.jiuyan.samllsheep.service.DownloadService;
|
|
import com.sheep.jiuyan.samllsheep.service.DownloadService;
|
|
|
import com.sheep.jiuyan.samllsheep.service.FloatShotScreenService;
|
|
import com.sheep.jiuyan.samllsheep.service.FloatShotScreenService;
|
|
|
-import com.sheep.jiuyan.samllsheep.service.ListenerShotNewService;
|
|
|
|
|
-import com.sheep.jiuyan.samllsheep.service.ListenerShotService;
|
|
|
|
|
import com.sheep.jiuyan.samllsheep.ui.activity.SignActivity;
|
|
import com.sheep.jiuyan.samllsheep.ui.activity.SignActivity;
|
|
|
import com.sheep.jiuyan.samllsheep.utils.G;
|
|
import com.sheep.jiuyan.samllsheep.utils.G;
|
|
|
import com.sheep.jiuyan.samllsheep.utils.PackageUtil;
|
|
import com.sheep.jiuyan.samllsheep.utils.PackageUtil;
|
|
@@ -219,7 +217,6 @@ import static com.sheep.gamegroup.util.UMConfigUtils.Event.USER_NEW_VERSION;
|
|
|
import static com.sheep.gamegroup.util.UMConfigUtils.Event.USER_TASK_RECORD;
|
|
import static com.sheep.gamegroup.util.UMConfigUtils.Event.USER_TASK_RECORD;
|
|
|
import static com.sheep.gamegroup.util.UMConfigUtils.Event.XIAOMI_GAME_LIST;
|
|
import static com.sheep.gamegroup.util.UMConfigUtils.Event.XIAOMI_GAME_LIST;
|
|
|
import static com.sheep.jiuyan.samllsheep.service.FloatShotScreenService.SET_SHOW_OR_HIDE;
|
|
import static com.sheep.jiuyan.samllsheep.service.FloatShotScreenService.SET_SHOW_OR_HIDE;
|
|
|
-import static com.sheep.jiuyan.samllsheep.service.ListenerShotService.IS_RECORD_PATH;
|
|
|
|
|
import static com.sheep.jiuyan.samllsheep.utils.ClassFileHelper.DIR;
|
|
import static com.sheep.jiuyan.samllsheep.utils.ClassFileHelper.DIR;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -2202,6 +2199,9 @@ public class Jump2View {
|
|
|
|
|
|
|
|
//打开一个发现
|
|
//打开一个发现
|
|
|
public void goFindItem(Context context, Article item) {
|
|
public void goFindItem(Context context, Article item) {
|
|
|
|
|
+ if(ArticleAd.showAd && ArticleAd.checkAdAndClick(item)){//检查点击的是否是 广告
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
switch (item.getType()) {//类型 1:游戏 2:咨询 3:转跳 4:任务 5:栏目
|
|
switch (item.getType()) {//类型 1:游戏 2:咨询 3:转跳 4:任务 5:栏目
|
|
|
case 1:
|
|
case 1:
|
|
|
Jump2View.getInstance().goFindGame(context, item);
|
|
Jump2View.getInstance().goFindGame(context, item);
|