开启另一个应用
private void start(){ Intent intent = new Intent(); try { intent.setClassName(getApplicationContext().createPackageContext( "com.example", android.content.Context.CONTEXT_IGNORE_SECURITY), "com.example.ExampleActivity"); } catch (NameNotFoundException e) { e.printStackTrace(); } startActivity(intent);}
?