开启另一个运用

开启另一个应用private void start(){Intent intent new Intent()try{intent.setClassName(getApplicat

开启另一个应用

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);}

?