读书人

【转】在装置(sdcard)上获得apk文件

发布时间: 2012-07-01 13:15:00 作者: rapoo

【转】在设备(sdcard)上获得apk文件的信息,安装或运行
http://stackoverflow.com/questions/5661418/get-apk-file-icon-version-name


    protected void runAppFromApkFileOnSdCard()    {        final PackageManager pm = this.getPackageManager();        PackageInfo packageInfo = pm.getPackageArchiveInfo(fullPath, 0);        Toast.makeText(getApplicationContext(), packageInfo.packageName, Toast.LENGTH_LONG).show();//        Intent intent           = pm.getLaunchIntentForPackage(packageInfo.packageName);//        if( intent == null ){//            File file   = new File(fullPath);//            intent      = new Intent();//            intent.setAction(Intent.ACTION_VIEW);//            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//            intent.setDataAndType(Uri.fromFile(file),//            "application/vnd.android.package-archive");//        }//        startActivity(intent);    }

读书人网 >移动开发

热点推荐