教你跳转到系统指定页面

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

Intent intent = new Intent();

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

startActivity(intent);

posted @ 2013-12-19 23:31  西北野狼  阅读(532)  评论(0编辑  收藏  举报