zoukankan      html  css  js  c++  java
  • 第二阶段冲刺七

    这是一个关于登陆进入对应用户界面的几个功能。

    package com.example.shazidouhuiapp.activity;
    
    import android.content.Intent;
    import android.os.Bundle;
    import android.widget.Toast;
    
    import androidx.annotation.Nullable;
    import androidx.appcompat.app.AppCompatActivity;
    
    import com.example.shazidouhuiapp.Bean.User;
    import com.example.shazidouhuiapp.MainActivity;
    import com.example.shazidouhuiapp.R;
    
    import java.util.Timer;
    import java.util.TimerTask;
    
    import cn.bmob.v3.Bmob;
    import cn.bmob.v3.BmobQuery;
    import cn.bmob.v3.BmobUser;
    import cn.bmob.v3.exception.BmobException;
    import cn.bmob.v3.listener.QueryListener;
    
    public class splash extends AppCompatActivity {
        @Override
        protected void onCreate(@Nullable Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.splash);
            Timer timer = new Timer();
            timer.schedule(timertask, 2000);
            Bmob.initialize(this,"e575c228703fd6ae7b822919edc18236");
        }
    
        TimerTask timertask = new TimerTask() {
            @Override
            public void run() {
                BmobUser currentUser = BmobUser.getCurrentUser(User.class);
                //逻辑判断是否登录,登陆了进入对应用户界面
                if (currentUser!=null) {
                    String id=currentUser.getObjectId();
                    BmobQuery<User> query=new BmobQuery<>();
                    query.getObject(id, new QueryListener<User>() {
                        @Override
                        public void done(User user, BmobException e) {
                            if(user.getType().equals("student")){
                                startActivity(new Intent(splash.this, studentinterface.class));
                            }
                            else if(user.getType().equals("teacher")){
                                startActivity(new Intent(splash.this,teacherinterface.class));
                            }
                        }
                    });
    
                }
                else {
                    startActivity(new Intent(splash.this, mobloging.class));
               }
    
            }
        };
    }
    

      

  • 相关阅读:
    多层结构中,事务的运用。
    A private conversation
    Sql Server 日志清理 (数据库压缩方法)
    Basic of Ajax
    Persin Buttons
    不知为什么无缘无故加到了一个“邯郸.net俱乐部”,想退出,找不到入口.....
    Wokflow designer not working when openning workflow in nonworkflow VS 2005 project
    GridView中如何取得隐藏列的值?
    Error: cannot obtain value
    Too late
  • 原文地址:https://www.cnblogs.com/tgthz/p/13088961.html
Copyright © 2011-2022 走看看