JIANGzihao0222

导航

 
第一种方式
Intent intent = new Intent();
intent.setClass(this,MainActivity3.class);
startActivity(intent);
第二种方式
Intent intent = new Intent();
intent.setClass(this,MainActivity2.class);
startActivity(intent);
第三种方式
Intent intent = new Intent();
ComponentName component = new ComponentName(this,MainActivity2.class);
intent.setComponent(component);
startActivity(intent);
总结:
第一种和第二种本质一样,第三种可以跳到其他包下的类,只许地址填正确
posted on 2023-03-06 22:58  实名吓我一跳  阅读(38)  评论(0)    收藏  举报