Android極速開發(fā)之Apk安裝

安裝之前判斷是否有root權(quán)限染苛,如果有root權(quán)限就靜默安轉(zhuǎn)感帅,如果沒有就利用意圖進行安裝驶俊。源碼參考地址

/**
 * 
 * @author Javen
 * @since 2016/05/24
 */
public class ApkController {
    /**
     * 描述: 安裝
     */
    public static boolean install(String apkPath,Context context){
        // 先判斷手機是否有root權(quán)限
        if(hasRootPerssion()){
            // 有root權(quán)限剥汤,利用靜默安裝實現(xiàn)
            return clientInstall(apkPath);
        }else{
            // 沒有root權(quán)限,利用意圖進行安裝
            File file = new File(apkPath);
            if(!file.exists())
                return false; 
            Intent intent = new Intent();
            intent.setAction("android.intent.action.VIEW");
            intent.addCategory("android.intent.category.DEFAULT");
            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            intent.setDataAndType(Uri.fromFile(file),"application/vnd.android.package-archive");
            context.startActivity(intent);
            return true;
        }
    }
     
    /**
     * 描述: 卸載
     */
    public static boolean uninstall(String packageName,Context context){
        if(hasRootPerssion()){
            // 有root權(quán)限允睹,利用靜默卸載實現(xiàn)
            return clientUninstall(packageName);
        }else{
            Uri packageURI = Uri.parse("package:" + packageName);
            Intent uninstallIntent = new Intent(Intent.ACTION_DELETE,packageURI);
            uninstallIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(uninstallIntent);
            return true;
        }
    }
     
    /**
     * 判斷手機是否有root權(quán)限
     */
    private static boolean hasRootPerssion(){
        PrintWriter PrintWriter = null;
        Process process = null;
        try {
            process = Runtime.getRuntime().exec("su");
            PrintWriter = new PrintWriter(process.getOutputStream());
            PrintWriter.flush();
            PrintWriter.close();
            int value = process.waitFor();  
            return returnResult(value);
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            if(process!=null){
                process.destroy();
            }
        }
        return false;
    }
     
    /**
     * 靜默安裝
     */
    private static boolean clientInstall(String apkPath){
        PrintWriter PrintWriter = null;
        Process process = null;
        try {
            process = Runtime.getRuntime().exec("su");
            PrintWriter = new PrintWriter(process.getOutputStream());
            PrintWriter.println("chmod 777 "+apkPath);
            PrintWriter.println("export LD_LIBRARY_PATH=/vendor/lib:/system/lib");
            PrintWriter.println("pm install -r "+apkPath);
//          PrintWriter.println("exit");
            PrintWriter.flush();
            PrintWriter.close();
            int value = process.waitFor();  
            return returnResult(value);
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            if(process!=null){
                process.destroy();
            }
        }
        return false;
    }
     
    /**
     * 靜默卸載
     */
    private static boolean clientUninstall(String packageName){
        PrintWriter PrintWriter = null;
        Process process = null;
        try {
            process = Runtime.getRuntime().exec("su");
            PrintWriter = new PrintWriter(process.getOutputStream());
            PrintWriter.println("LD_LIBRARY_PATH=/vendor/lib:/system/lib ");
            PrintWriter.println("pm uninstall "+packageName);
            PrintWriter.flush();
            PrintWriter.close();
            int value = process.waitFor();  
            return returnResult(value); 
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            if(process!=null){
                process.destroy();
            }
        }
        return false;
    }
     
    /**
     * 啟動app
     * com.exmaple.client/.MainActivity
     * com.exmaple.client/com.exmaple.client.MainActivity
     */
    public static boolean startApp(String packageName,String activityName){
        boolean isSuccess = false;
        String cmd = "am start -n " + packageName + "/" + activityName + " \n";
        Process process = null;
        try {
           process = Runtime.getRuntime().exec(cmd);
           int value = process.waitFor();  
           return returnResult(value);
        } catch (Exception e) {
          e.printStackTrace();
        } finally{
            if(process!=null){
                process.destroy();
            }
        }
        return isSuccess;
    }
     
     
    private static boolean returnResult(int value){
        // 代表成功  
        if (value == 0) {
            return true;
        } else if (value == 1) { // 失敗
            return false;
        } else { // 未知情況
            return false;
        }  
    }
    
    /**
     * 查詢所有非系統(tǒng)app的信息
     * @param mContext
     * @return
     */
    public static List<Map<String, Object>> getAPPInstalled(Context mContext) {

        List<Map<String, Object>> listItems = new ArrayList<Map<String, Object>>();

        // 獲取系統(tǒng)內(nèi)的所有程序信息
        Intent mainintent = new Intent(Intent.ACTION_MAIN, null);
        mainintent.addCategory(Intent.CATEGORY_LAUNCHER);
        List<PackageInfo> packageinfo = mContext.getPackageManager()
                .getInstalledPackages(0);

        int count = packageinfo.size();
        for (int i = 0; i < count; i++) {

            PackageInfo pinfo = packageinfo.get(i);
            ApplicationInfo appInfo = pinfo.applicationInfo;
            if ((appInfo.flags & ApplicationInfo.FLAG_SYSTEM) > 0) {
                // 系統(tǒng)程序 忽略
            } else {
                // 非系統(tǒng)程序
                Map<String, Object> map = new HashMap<String, Object>();
                map.put("app_logo", pinfo.applicationInfo.loadIcon(mContext
                        .getPackageManager()));
                map.put("app_name", pinfo.applicationInfo.loadLabel(mContext
                        .getPackageManager()));
                map.put("package_name", pinfo.applicationInfo.packageName);
                map.put("app_version_name", pinfo.versionName);
                map.put("app_version_code", pinfo.versionCode);

                listItems.add(map);
            }
        }
        return listItems;
    }
    
    
    /**
     * 判斷應用是否需要安裝
     * @param mContext
     * @param packageName
     * @param versionCode
     * @return
     */
    public static boolean isInstalled(Context mContext,String packageName,int versionCode) {

        // 獲取系統(tǒng)內(nèi)的所有程序信息
        Intent mainintent = new Intent(Intent.ACTION_MAIN, null);
        mainintent.addCategory(Intent.CATEGORY_LAUNCHER);
        List<PackageInfo> packageinfo = mContext.getPackageManager()
                .getInstalledPackages(0);

        int count = packageinfo.size();
        String pn;
        int vc;
        for (int i = 0; i < count; i++) {

            PackageInfo pinfo = packageinfo.get(i);
            ApplicationInfo appInfo = pinfo.applicationInfo;
            if ((appInfo.flags & ApplicationInfo.FLAG_SYSTEM) > 0) {
                // 系統(tǒng)程序 忽略
            } else {
                // 非系統(tǒng)程序
                pn=pinfo.applicationInfo.packageName;
                vc=pinfo.versionCode;

                if (pn.equalsIgnoreCase(packageName) && vc >= versionCode) {
                    return true;
                }
            }
        }
        return false;
    }
}

獲取手機安裝的非系統(tǒng)應用


public class App {

    public static List<Map<String, Object>> getAPPInstalled(Context mContext) {

        List<Map<String, Object>> listItems = new ArrayList<Map<String, Object>>();

        //查詢所有非系統(tǒng)app的信息
        Intent mainintent = new Intent(Intent.ACTION_MAIN, null);
        mainintent.addCategory(Intent.CATEGORY_LAUNCHER);
        List<PackageInfo> packageinfo = mContext.getPackageManager()
                .getInstalledPackages(0);

        int count = packageinfo.size();
        for (int i = 0; i < count; i++) {

            PackageInfo pinfo = packageinfo.get(i);
            ApplicationInfo appInfo = pinfo.applicationInfo;
            if ((appInfo.flags & ApplicationInfo.FLAG_SYSTEM) > 0) {
                // 系統(tǒng)程序 忽略
            } else {
                // 非系統(tǒng)程序
                Map<String, Object> map = new HashMap<String, Object>();
                map.put("app_logo", pinfo.applicationInfo.loadIcon(mContext
                        .getPackageManager()));
                map.put("app_name", pinfo.applicationInfo.loadLabel(mContext
                        .getPackageManager()));
                map.put("package_name", pinfo.applicationInfo.packageName);
                map.put("app_version_name", pinfo.versionName);
                map.put("app_version_code", pinfo.versionCode);

                listItems.add(map);
            }
        }
        return listItems;
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末运准,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子缭受,更是在濱河造成了極大的恐慌戳吝,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件贯涎,死亡現(xiàn)場離奇詭異,居然都是意外死亡慢洋,警方通過查閱死者的電腦和手機塘雳,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來普筹,“玉大人败明,你說我怎么就攤上這事√溃” “怎么了妻顶?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵酸员,是天一觀的道長。 經(jīng)常有香客問我讳嘱,道長幔嗦,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任沥潭,我火速辦了婚禮邀泉,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘钝鸽。我一直安慰自己汇恤,他們只是感情好,可當我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布拔恰。 她就那樣靜靜地躺著因谎,像睡著了一般。 火紅的嫁衣襯著肌膚如雪颜懊。 梳的紋絲不亂的頭發(fā)上财岔,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天,我揣著相機與錄音饭冬,去河邊找鬼使鹅。 笑死,一個胖子當著我的面吹牛昌抠,可吹牛的內(nèi)容都是我干的患朱。 我是一名探鬼主播,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼炊苫,長吁一口氣:“原來是場噩夢啊……” “哼裁厅!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起侨艾,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤执虹,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后唠梨,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體袋励,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年当叭,在試婚紗的時候發(fā)現(xiàn)自己被綠了茬故。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡蚁鳖,死狀恐怖磺芭,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情醉箕,我是刑警寧澤钾腺,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布徙垫,位于F島的核電站,受9級特大地震影響放棒,放射性物質(zhì)發(fā)生泄漏姻报。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一哨查、第九天 我趴在偏房一處隱蔽的房頂上張望逗抑。 院中可真熱鬧,春花似錦寒亥、人聲如沸邮府。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽褂傀。三九已至,卻和暖如春加勤,著一層夾襖步出監(jiān)牢的瞬間仙辟,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工鳄梅, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留叠国,地道東北人。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓戴尸,卻偏偏與公主長得像粟焊,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子孙蒙,可洞房花燭夜當晚...
    茶點故事閱讀 43,724評論 2 351

推薦閱讀更多精彩內(nèi)容