| | |
| | | import android.content.Context; |
| | | import android.content.Intent; |
| | | import android.graphics.Bitmap; |
| | | import android.os.Handler; |
| | | import android.os.Looper; |
| | | import android.util.Log; |
| | | |
| | | import com.google.gson.Gson; |
| | |
| | | Intent intent = new Intent(); |
| | | intent.setClass(MyApplication.Companion.getAppContext(), SlabLoginActivity.class); |
| | | intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); |
| | | intent.putExtra("IsMoreLogin",true); |
| | | MyApplication.Companion.getAppContext().startActivity(intent); |
| | | new Handler(Looper.getMainLooper()).post(() -> { |
| | | showToast("您的账号在其他地方登陆"); |
| | | }); |
| | | } |
| | | onError(baseBean.getCode(), baseBean.getMsg(),responseString); |
| | | // success(responseString); |