首先在模拟器中打开你即将要跳转的系统界面,查看eclipse的logcat,其中包含跳转页面的包名和对应的组件名称,通过类似如下方式实现:
Intent intent = new Intent();
intent.setClassName("com.android.gallery","com.android.camera.GalleryPicker");
startActivity(intent);
首先在模拟器中打开你即将要跳转的系统界面,查看eclipse的logcat,其中包含跳转页面的包名和对应的组件名称,通过类似如下方式实现:
Intent intent = new Intent();
intent.setClassName("com.android.gallery","com.android.camera.GalleryPicker");
startActivity(intent);