安卓页面跳转

73 阅读1分钟
Intent intent =new Intent();
intent.setClass(MainActivity.this,LoginActivity.class);
startActivity(intent);