1.手机连接Android Studio后,然后在手机上打开到你想要看Activity的应用。(任何一个应用都可以)
2.在Android Studio后下执行下面这条命令
adb shell dumpsys activity activities
控制面板我们这里能看到cmp=com.lexuepai/.HomeActivity}
包名 com.lexuepai
类名 com.lexuepai.HomeActivity
知道该页面的话,我们就可以直接通过Intent打开这个页面
Intent intent = new Intent();
ComponentName cn = new ComponentName("com.lexuepai", "com.lexuepai.HomeActivity");
intent.setComponent(cn);
startActivity(intent);
来源作者:LosingCarryJie,修改以上相关内容。
原文:https://blog.csdn.net/LosingCarryJie/article/details/84980512
版权声明:本文为博主原创文章,转载请附上博文链接!
网友评论