Android parses the APK file on the SD card and android parses the sdapk

Source: Internet
Author: User

Android parses the APK file on the SD card and android parses the sdapk

public void parseApk(Context context, String apkFilePath){    PackageManager packageManager = context.getPackageManager();    PackageInfo packageInfo = packageManager.getPackageArchiveInfo(apkFilePath, 0);    if(packageInfo != null){        packageInfo.applicationInfo.sourceDir = apkFilePath;        packageInfo.applicationInfo.publicSourceDir = apkFilePath;        String name = packageInfo.applicationInfo.loadLabel(packageManager).toString();        String packageName = packageInfo.packageName;        String versionName = packageInfo.versionName;        int versionCode = packageInfo.versionCode;        Drawable iconDrawable = packageInfo.applicationInfo.loadIcon(packageManager);    }}

Note that after obtaining packageInfo, you must set sourceDir and publicSourceDir of applicationInfo. Otherwise, you will output the following error message and throw an exception when reading the label.
Failure retrieving text 0x7f050000 in package com.taskkiller.demo

When you read the icon, the following error message is output and an exception is thrown.
Failure retrieving icon 0x7f020005 in package com.sample.radio

This is because both the label and icon are in the resource. If sourceDir and publicSourceDir are not set, the information in the resource cannot be read.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.