切换到正在运行的应用程序时出错 - android

时间:2014-02-18 04:31:43

标签: background switch-statement between

我已经编写了一个应用程序来切换android中的后台应用程序。 切换到系统应用程序时我收到错误(EX:com.android.setting)

我的代码:

try{
    Intent i = new Intent();
    i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    i.setAction("android.intent.action.VIEW");
    i.setComponent(ComponentName.unflattenFromString(pack
    + "/" + cclass)); 
    this.startActivity(i);
}catch(Exception ex){
    **//ex is null**
}

感谢您的帮助!

0 个答案:

没有答案