|
@@ -2,18 +2,18 @@ package com.sheep.gamegroup.util;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
import android.content.Context;
|
|
|
import android.content.Intent;
|
|
import android.content.Intent;
|
|
|
-import android.os.Bundle;
|
|
|
|
|
|
|
|
|
|
import com.kfzs.duanduan.ActMain;
|
|
import com.kfzs.duanduan.ActMain;
|
|
|
|
|
+import com.kfzs.duanduan.bean.KFIntentKeys;
|
|
|
import com.sheep.gamegroup.model.entity.TaskEty;
|
|
import com.sheep.gamegroup.model.entity.TaskEty;
|
|
|
import com.sheep.gamegroup.view.activity.AccountAndSecurityAct;
|
|
import com.sheep.gamegroup.view.activity.AccountAndSecurityAct;
|
|
|
|
|
+import com.sheep.gamegroup.view.activity.ActGuideOnHook;
|
|
|
import com.sheep.gamegroup.view.activity.AskGetMoneyAct;
|
|
import com.sheep.gamegroup.view.activity.AskGetMoneyAct;
|
|
|
import com.sheep.gamegroup.view.activity.AuthenticationAct;
|
|
import com.sheep.gamegroup.view.activity.AuthenticationAct;
|
|
|
import com.sheep.gamegroup.view.activity.BindDataAct;
|
|
import com.sheep.gamegroup.view.activity.BindDataAct;
|
|
|
import com.sheep.gamegroup.view.activity.BindOrChangeWeixinAct;
|
|
import com.sheep.gamegroup.view.activity.BindOrChangeWeixinAct;
|
|
|
import com.sheep.gamegroup.view.activity.CommitWxAct;
|
|
import com.sheep.gamegroup.view.activity.CommitWxAct;
|
|
|
import com.sheep.gamegroup.view.activity.DialogActivity;
|
|
import com.sheep.gamegroup.view.activity.DialogActivity;
|
|
|
-import com.sheep.gamegroup.view.activity.HomePageAct;
|
|
|
|
|
import com.sheep.gamegroup.view.activity.LieMakeMoneyAct;
|
|
import com.sheep.gamegroup.view.activity.LieMakeMoneyAct;
|
|
|
import com.sheep.gamegroup.view.activity.LoginAct;
|
|
import com.sheep.gamegroup.view.activity.LoginAct;
|
|
|
import com.sheep.gamegroup.view.activity.PersonalCenterAct;
|
|
import com.sheep.gamegroup.view.activity.PersonalCenterAct;
|
|
@@ -24,8 +24,6 @@ import com.sheep.gamegroup.view.activity.WithdrawalAct;
|
|
|
import com.sheep.gamegroup.view.activity.WithdrawalListAct;
|
|
import com.sheep.gamegroup.view.activity.WithdrawalListAct;
|
|
|
import com.sheep.gamegroup.view.activity.WithdrawalResultAct;
|
|
import com.sheep.gamegroup.view.activity.WithdrawalResultAct;
|
|
|
|
|
|
|
|
-import javax.inject.Inject;
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* Created by ljy on 2018/3/18.
|
|
* Created by ljy on 2018/3/18.
|
|
|
*/
|
|
*/
|
|
@@ -176,6 +174,19 @@ public class Jump2View {
|
|
|
* @param context
|
|
* @param context
|
|
|
* @param o
|
|
* @param o
|
|
|
*/
|
|
*/
|
|
|
|
|
+ public void goGuideOnHook(Context context, Object o){
|
|
|
|
|
+ Intent intent = new Intent(context, ActGuideOnHook.class);
|
|
|
|
|
+// extraUrl = getIntent().getStringExtra(KFIntentKeys.EXTRA_WEBVIEW_URL);
|
|
|
|
|
+// extraTitle = getIntent().getStringExtra(KFIntentKeys.EXTRA_WEBVIEW_TITLE);
|
|
|
|
|
+ intent.putExtra(KFIntentKeys.EXTRA_WEBVIEW_URL, "https://qiniu.kuaifazs.com/weixin.html");
|
|
|
|
|
+ intent.putExtra(KFIntentKeys.EXTRA_WEBVIEW_TITLE, "挂机引导");
|
|
|
|
|
+ context.startActivity(intent);
|
|
|
|
|
+ }
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 跳到提交微信号挂机赚钱界面
|
|
|
|
|
+ * @param context
|
|
|
|
|
+ * @param o
|
|
|
|
|
+ */
|
|
|
public void goCommitWxView(Context context, Object o){
|
|
public void goCommitWxView(Context context, Object o){
|
|
|
Intent intent = new Intent(context, CommitWxAct.class);
|
|
Intent intent = new Intent(context, CommitWxAct.class);
|
|
|
context.startActivity(intent);
|
|
context.startActivity(intent);
|