| | |
| | | |
| | | import com.lzy.okgo.cache.CacheMode; |
| | | import com.moral.andbrickslib.utils.FastJsonTools; |
| | | import com.moral.andbrickslib.utils.NetworkUtil; |
| | | import com.moral.andbrickslib.utils.StatusBarUtil; |
| | | import com.moral.yunfushao.MainActivity; |
| | | import com.moral.yunfushao.MainApp; |
| | |
| | | import com.moral.yunfushao.httputils.HttpCallBack; |
| | | import com.moral.yunfushao.httputils.HttpUtils; |
| | | import com.moral.yunfushao.model.User; |
| | | import com.moral.yunfushao.utils.SharedPreferencesUtil; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | |
| | | protected void onCreate(@Nullable Bundle savedInstanceState) { |
| | | super.onCreate(savedInstanceState); |
| | | StatusBarUtil.translucentStatusBar(LoginActivity.this); |
| | | |
| | | int type = SharedPreferencesUtil.getUtil(this).getLoginInfo().getLogin_type(); |
| | | |
| | | if (!NetworkUtil.isAvailable(this)) { |
| | | return; |
| | | } |
| | | switch (type) { |
| | | case 1: |
| | | //手机登陆 |
| | | goHome(); |
| | | break; |
| | | case 2: |
| | | //微信登陆 |
| | | sendReq(); |
| | | break; |
| | | } |
| | | } |
| | | |
| | | private void goHome() { |
| | | if (!TextUtils.isEmpty(MainApp.userId)) { |
| | | Intent intent = new Intent(this, MainActivity.class); |
| | | startActivity(intent); |
| | | } else { |
| | | Intent intent = new Intent(this, LoginActivity.class); |
| | | startActivity(intent); |
| | | } |
| | | finish(); |
| | | } |
| | | |
| | | |
| | | |
| | | @Override |
| | |
| | | et_phone = findView(R.id.et_phone); |
| | | et_pwd = findView(R.id.et_pwd); |
| | | weixinlogin = findView(R.id.weixinlogin); |
| | | initAnimator(); |
| | | } |
| | | |
| | | private void initAnimator() { |
| | | // ObjectAnimator an = ObjectAnimator.ofFloat(bt_sure, "translationX", 500f, 0f); |
| | | // an.start(); |
| | | //// ObjectAnimator translationY = ObjectAnimator.ofFloat(bt_sure, "rotation", 360f, 0f); |
| | | // ObjectAnimator scaleY = ObjectAnimator.ofFloat(bt_sure, "scaleY", 0f, 1f); |
| | | // ObjectAnimator scaleX = ObjectAnimator.ofFloat(bt_sure, "scaleX", 0f, 1f); |
| | | // |
| | | // AnimatorSet oo = new AnimatorSet(); |
| | | // oo.playTogether(scaleY, scaleX); |
| | | // oo.setDuration(500); |
| | | // oo.start(); |
| | | } |
| | | |
| | | @Override |
| | |
| | | protected void onErrorPageClick() { |
| | | |
| | | } |
| | | |
| | | private void login(String tel, final String pwd) { |
| | | final String url = API.LOGIN; |
| | | Map<String, String> params = new HashMap<>(); |
| | |
| | | MainApp.theApp.sharedPreferencesUtil.saveLoginInfo(user); |
| | | user.setLogin_type(1); |
| | | MainApp.theApp.userId = user.get_id(); |
| | | Intent intent = new Intent(getApplicationContext(), MainActivity.class); |
| | | Bundle bundle = new Bundle(); |
| | | bundle.putBoolean("islogin", true); |
| | | intent.putExtras(bundle); |
| | | startActivity(intent); |
| | | finish(); |
| | | jumpMain(); |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | }); |
| | | } |
| | | |
| | | @Override |
| | | protected void onStop() { |
| | | super.onStop(); |
| | | finish(); |
| | | } |
| | | |
| | | private void jumpMain() { |
| | | Intent intent = new Intent(getApplicationContext(), MainActivity.class); |
| | | Bundle bundle = new Bundle(); |
| | | bundle.putBoolean("islogin", true); |
| | | intent.putExtras(bundle); |
| | | startActivity(intent); |
| | | finish(); |
| | | } |
| | | } |