解决方案 »

  1.   

    这样呢
                Intent mIntent = new Intent( ); 
                ComponentName comp = new ComponentName("com.mediatek.filemanager", "com.mediatek.filemanager.FileManagerOperationActivity");
                mIntent.setComponent(comp); 
                mIntent.setAction("android.intent.action.VIEW"); 
                startActivity(mIntent);可能需要设置mIntent.flag 为new_task,你试试吧
      

  2.   

    你好,用你给的代码试过了,能够跳转到文件管理器,但是伴随着我这个应用的弹框终止(sorry XXX has stopped),你说的mlntent.flag还没设置,我再设置看看。
      

  3.   

    我新建的一个android项目里面加一个button,点击进去提示错误,找不到相关类
    E/AndroidRuntime(1756): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.mediatek.filemanager/com.mediatek.filemanager.FileManagerOperationActivity}; have you declared this activity in your AndroidManifest.xml?