有没有办法直接启动这个应用程序?
DeskClock 应用程序(来自源代码)通过以下方式启动:
case R.id.menu_item_night_mode:
startActivity(new Intent(DeskClock.this, ScreensaverActivity.class));
我试过了,但没有运气:
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.google.android.deskclock", "com.android.deskclock.ScreensaverActivity"));
getActivity().startActivity(intent);
有什么建议么?