教你跳转到系统指定页面

首先在模拟器中打开你即将要跳转的系统界面,查看eclipse的logcat,其中包含跳转页面的包名和对应的组件名称,通过类似如下方式实现:

Intent intent = new Intent();

intent.setClassName("com.android.gallery","com.android.camera.GalleryPicker");

startActivity(intent);

原文地址:https://www.cnblogs.com/androidsuperman/p/3483058.html