欢迎页主要代码

 private void startThread() {
        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {             
                Intent i;          
                boolean isLogined = MyApp.myApp.isLogined();
             
                    if (isLogined) {
                        //登陆过了
                        i = new Intent(WelcomeAty.this, MainActivity.class);
                    } else {
                        //没登陆过
                        i = new Intent(WelcomeAty.this, LoginAty.class);
                    }
            
                startActivity(i); 
                finish();

            }
        }, 1000);
    }
 

你可能感兴趣的:(Android)