现在有个需求:一个Android11的设备上,look.apk的功能是在每次检测到有u盘插入设备监听到ACTION_MEDIA_MOUNTED广播后会去访问u盘的挂载路径访问u盘里面是否有db.apk,如果有就会用 pm.getPackageArchiveInfo(absPath, PackageManager.GET_ACTIVITIES);来获取apk的版本号和系统已经安装号的db.apk对比,看是否后需要安装u盘里面的db.apk来进行更新。。现在发现look.apk里面实现getPackageArchiveInfo去访问u盘,会出现在卸载的时候无法成功卸载u盘,导致下一次插入u盘后无法挂载的现象针。对这个情况,是否可以在监听到u盘插入后把db.apk拷贝到download目录下,然后再在通过pm.getPackageArchiveInfo获取download目录下的dbapk版本号,在u盘卸载的时候就删除download下的apk
时间: 2024-02-23 09:59:16 浏览: 110
可以通过将U盘中的db.apk拷贝到系统的Download目录下,然后再通过getPackageArchiveInfo获取Download目录下的db.apk版本信息,以避免在卸载U盘时无法成功卸载的问题。具体实现步骤如下:
1. 在Look.apk中监听ACTION_MEDIA_MOUNTED广播,当检测到U盘插入后,获取U盘的挂载路径;
2. 在U盘挂载路径下查找db.apk文件,如果找到则拷贝到系统的Download目录下;
3. 获取Download目录下的db.apk版本信息,与系统已安装的apk版本信息进行比较,如果需要更新则进行更新操作;
4. 在U盘卸载时,删除Download目录下的db.apk文件。
以下是示例代码:
```java
public class LookApk extends BroadcastReceiver {
private static final String U_DISK_PATH = "/storage/9016-4EF8";
private static final String APK_NAME = "db.apk";
private static final String DOWNLOAD_DIR = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).getAbsolutePath();
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (action.equals(Intent.ACTION_MEDIA_MOUNTED)) {
// 获取U盘挂载路径
String uDiskPath = intent.getData().getPath();
if (uDiskPath.equals(U_DISK_PATH)) {
// 在U盘路径下查找db.apk文件
String apkPath = uDiskPath + File.separator + APK_NAME;
File apkFile = new File(apkPath);
if (apkFile.exists()) {
// 将db.apk拷贝到Download目录下
String downloadPath = DOWNLOAD_DIR + File.separator + APK_NAME;
try {
FileUtils.copyFile(apkFile, new File(downloadPath));
} catch (IOException e) {
e.printStackTrace();
}
// 获取Download目录下db.apk的版本信息
PackageManager pm = context.getPackageManager();
PackageInfo apkInfo = pm.getPackageArchiveInfo(downloadPath, PackageManager.GET_ACTIVITIES);
if (apkInfo != null && apkInfo.packageName.equals("com.example.db") && apkInfo.versionCode > pm.getPackageInfo("com.example.db", 0).versionCode) {
// 需要更新db.apk,进行更新操作
Uri uri = Uri.fromFile(new File(downloadPath));
Intent installIntent = new Intent(Intent.ACTION_VIEW);
installIntent.setDataAndType(uri, "application/vnd.android.package-archive");
installIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(installIntent);
}
}
}
} else if (action.equals(Intent.ACTION_MEDIA_EJECT)) {
// U盘卸载时,删除Download目录下的db.apk文件
String downloadPath = DOWNLOAD_DIR + File.separator + APK_NAME;
File downloadFile = new File(downloadPath);
if (downloadFile.exists()) {
downloadFile.delete();
}
}
}
}
```
需要注意的是,上述代码中的U盘路径和APK名称需要根据实际情况进行修改,特别是U盘路径可能因设备而有所不同。此外,需要在AndroidManifest.xml中声明相关权限和广播接收器,具体可参考以下示例代码:
```xml
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<receiver
android:name=".LookApk"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MEDIA_MOUNTED" />
<action android:name="android.intent.action.MEDIA_EJECT" />
<data android:scheme="file" />
</intent-filter>
</receiver>
```
阅读全文