gpt4 book ai didi

android - 如何在 Android O 上使用 StorageStatsManager.queryStatsForPackage?

转载 作者:太空狗 更新时间:2023-10-29 16:12:07 31 4
gpt4 key购买 nike

背景

在 Android O 之前,为了获得应用程序大小,您必须拥有它的特殊权限,并使用隐藏的 API。

问题

这样的解决方案将不再有效,但谷歌提供了一个不太精细的官方 API:queryStatsForPackage ,返回 StorageStats对象。

但是,我找不到任何关于如何使用它的信息。

与仅需要应用程序包名称的隐藏 API 不同,此 API 还需要“String volumeUuid”和“UserHandle user”。

问题

  1. 如何提供这些参数?
  2. 它们是什么意思?每个 volumeUuid 是指不同的存储(例如内置存储和真正的 sd 卡),而 UserHandle 是针对每个用户的吗?
  3. 如果 #2 是正确的,我真的应该为每个可能的值调用它们中的每一个,以获得应用程序实际占用的总存储空间吗?如果是,怎么做?

最佳答案

好的,我已经了解如何使用新的 API。我已经为此准备了一个小示例,获取有关卷存储和特定应用程序的一些信息(这次是 Play 商店,但您可以根据需要更改它):

public class MainActivity extends AppCompatActivity {

public static final String PACKAGE_NAME = "com.android.vending";

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}

@Override
protected void onResume() {
super.onResume();
if (!hasUsageStatsPermission(this))
startActivityForResult(new Intent(Settings.ACTION_USAGE_ACCESS_SETTINGS).addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY), 1);
else {
final Context context = this;
AsyncTask.execute(new Runnable() {
@TargetApi(VERSION_CODES.O)
@Override
public void run() {
@SuppressLint("WrongConstant") final StorageStatsManager storageStatsManager = (StorageStatsManager) getSystemService(Context.STORAGE_STATS_SERVICE);
final StorageManager storageManager = (StorageManager) getSystemService(Context.STORAGE_SERVICE);
final List<StorageVolume> storageVolumes = storageManager.getStorageVolumes();
final UserHandle user = android.os.Process.myUserHandle();
for (StorageVolume storageVolume : storageVolumes) {
final String uuidStr = storageVolume.getUuid();
final UUID uuid = uuidStr == null ? StorageManager.UUID_DEFAULT : UUID.fromString(uuidStr);
try {
Log.d("AppLog", "storage:" + uuid + " : " + storageVolume.getDescription(context) + " : " + storageVolume.getState());
Log.d("AppLog", "getFreeBytes:" + Formatter.formatShortFileSize(context, storageStatsManager.getFreeBytes(uuid)));
Log.d("AppLog", "getTotalBytes:" + Formatter.formatShortFileSize(context, storageStatsManager.getTotalBytes(uuid)));
Log.d("AppLog", "storage stats for app of package name:" + PACKAGE_NAME + " : ");

final StorageStats storageStats = storageStatsManager.queryStatsForPackage(uuid, PACKAGE_NAME, user);
Log.d("AppLog", "getAppBytes:" + Formatter.formatShortFileSize(context, storageStats.getAppBytes()) +
" getCacheBytes:" + Formatter.formatShortFileSize(context, storageStats.getCacheBytes()) +
" getDataBytes:" + Formatter.formatShortFileSize(context, storageStats.getDataBytes()));
} catch (NameNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
});

}
}

@TargetApi(VERSION_CODES.M)
public static boolean hasUsageStatsPermission(Context context) {
//http://stackoverflow.com/a/42390614/878126
if (VERSION.SDK_INT < VERSION_CODES.LOLLIPOP)
return false;
AppOpsManager appOps = (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);
final int mode = appOps.checkOpNoThrow(AppOpsManager.OPSTR_GET_USAGE_STATS, android.os.Process.myUid(), context.getPackageName());
boolean granted = false;
if (mode == AppOpsManager.MODE_DEFAULT)
granted = (context.checkCallingOrSelfPermission(android.Manifest.permission.PACKAGE_USAGE_STATS) == PackageManager.PERMISSION_GRANTED);
else
granted = (mode == AppOpsManager.MODE_ALLOWED);
return granted;
}
}

list 文件应该有这个:

<uses-permission
android:name="android.permission.PACKAGE_USAGE_STATS"
tools:ignore="ProtectedPermissions"/>

编辑:请注意 UUID.fromString(uuidStr) 的部分对于 SD 卡可能会失败,谷歌给出的原因是 this :

Android can't maintain quota-style statistics for public volumes (SDcard etc.). Apps will need to build size calculation logic themselves.

可悲的是,在 Android 11 上,由于到达“Android”文件夹的新限制,即使这是不可能的。在这里要求更改它:

@t0m 但即使按照他们写的,按照他们所说的去做也不是正式不可能的,因为存储权限在 Android 11 上非常受限,不允许您正确访问 Android 文件夹。要求在这里解决这个问题:

请考虑加注星标。

关于android - 如何在 Android O 上使用 StorageStatsManager.queryStatsForPackage?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43472398/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com