|
@@ -44,14 +44,19 @@ 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.util.share.ShareLinkConfig;
|
|
import com.sheep.gamegroup.util.share.ShareLinkConfig;
|
|
|
|
|
+import com.sheep.gamegroup.view.activity.ActApprenticeRedPacket;
|
|
|
import com.sheep.gamegroup.view.activity.ActArticleComment;
|
|
import com.sheep.gamegroup.view.activity.ActArticleComment;
|
|
|
import com.sheep.gamegroup.view.activity.ActAudit;
|
|
import com.sheep.gamegroup.view.activity.ActAudit;
|
|
|
import com.sheep.gamegroup.view.activity.ActBindMobileRegister;
|
|
import com.sheep.gamegroup.view.activity.ActBindMobileRegister;
|
|
|
|
|
+import com.sheep.gamegroup.view.activity.ActCoinCenter;
|
|
|
import com.sheep.gamegroup.view.activity.ActCommentGameApp;
|
|
import com.sheep.gamegroup.view.activity.ActCommentGameApp;
|
|
|
import com.sheep.gamegroup.view.activity.ActCreditCardTaskList;
|
|
import com.sheep.gamegroup.view.activity.ActCreditCardTaskList;
|
|
|
import com.sheep.gamegroup.view.activity.ActCreditCardWeb;
|
|
import com.sheep.gamegroup.view.activity.ActCreditCardWeb;
|
|
|
import com.sheep.gamegroup.view.activity.ActDownloadWelfareList;
|
|
import com.sheep.gamegroup.view.activity.ActDownloadWelfareList;
|
|
|
|
|
+import com.sheep.gamegroup.view.activity.ActEntertainmentLuckDraw;
|
|
|
|
|
+import com.sheep.gamegroup.view.activity.ActEveryDayShare;
|
|
|
import com.sheep.gamegroup.view.activity.ActExchangeCMCC;
|
|
import com.sheep.gamegroup.view.activity.ActExchangeCMCC;
|
|
|
|
|
+import com.sheep.gamegroup.view.activity.ActExchangeMall;
|
|
|
import com.sheep.gamegroup.view.activity.ActFootprint;
|
|
import com.sheep.gamegroup.view.activity.ActFootprint;
|
|
|
import com.sheep.gamegroup.view.activity.ActGameAccount;
|
|
import com.sheep.gamegroup.view.activity.ActGameAccount;
|
|
|
import com.sheep.gamegroup.view.activity.ActGameAgencyRecharge;
|
|
import com.sheep.gamegroup.view.activity.ActGameAgencyRecharge;
|
|
@@ -2279,4 +2284,44 @@ public class Jump2View {
|
|
|
Intent intent = new Intent(activity, ActFootprint.class);
|
|
Intent intent = new Intent(activity, ActFootprint.class);
|
|
|
activity.startActivity(intent);
|
|
activity.startActivity(intent);
|
|
|
}
|
|
}
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 小绵羊3.4.5新增--跳转到收徒红包界面
|
|
|
|
|
+ */
|
|
|
|
|
+ public void goActApprenticeRedPacket() {
|
|
|
|
|
+ Activity activity = ActivityManager.getInstance().currentActivity();
|
|
|
|
|
+ Intent intent = new Intent(activity, ActApprenticeRedPacket.class);
|
|
|
|
|
+ activity.startActivity(intent);
|
|
|
|
|
+ }
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 小绵羊3.4.5新增--跳转到兑换商城界面
|
|
|
|
|
+ */
|
|
|
|
|
+ public void goActExchangeMall() {
|
|
|
|
|
+ Activity activity = ActivityManager.getInstance().currentActivity();
|
|
|
|
|
+ Intent intent = new Intent(activity, ActExchangeMall.class);
|
|
|
|
|
+ activity.startActivity(intent);
|
|
|
|
|
+ }
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 小绵羊3.4.5新增--跳转到每日分享界面
|
|
|
|
|
+ */
|
|
|
|
|
+ public void goActEveryDayShare() {
|
|
|
|
|
+ Activity activity = ActivityManager.getInstance().currentActivity();
|
|
|
|
|
+ Intent intent = new Intent(activity, ActEveryDayShare.class);
|
|
|
|
|
+ activity.startActivity(intent);
|
|
|
|
|
+ }
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 小绵羊3.4.5新增--跳转到娱乐抽奖界面
|
|
|
|
|
+ */
|
|
|
|
|
+ public void goActEntertainmentLuckDraw() {
|
|
|
|
|
+ Activity activity = ActivityManager.getInstance().currentActivity();
|
|
|
|
|
+ Intent intent = new Intent(activity, ActEntertainmentLuckDraw.class);
|
|
|
|
|
+ activity.startActivity(intent);
|
|
|
|
|
+ }
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 小绵羊3.4.5新增--跳转到金币中心界面
|
|
|
|
|
+ */
|
|
|
|
|
+ public void goActCoinCenter() {
|
|
|
|
|
+ Activity activity = ActivityManager.getInstance().currentActivity();
|
|
|
|
|
+ Intent intent = new Intent(activity, ActCoinCenter.class);
|
|
|
|
|
+ activity.startActivity(intent);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|