gpt4 book ai didi

android - 带有异步任务的 getInstalledApplications()

转载 作者:太空狗 更新时间:2023-10-29 14:23:48 26 4
gpt4 key购买 nike

我正在获取要显示给用户的已安装非系统应用列表,我正在使用它来这样做:

    private class getApplications extends AsyncTask<String, Void, String> {

@Override
protected String doInBackground(String... params) {
// perform long running operation operation

for (i = 0; i < list.size(); i++) {

if ((list.get(i).flags & ApplicationInfo.FLAG_SYSTEM) != 1) {

label = (String) pm.getApplicationLabel(list.get(i));

Log.w("Installed Applications", list.get(i).packageName.toString());

}
}

return label;
}

@Override
protected void onPostExecute(String result) {

txtApplications.append(label);

if (i!=list.size()-1) {

txtApplications.append(", ");

}
}

@Override
protected void onPreExecute() {

pm = getPackageManager();

list = pm.getInstalledApplications(PackageManager.GET_META_DATA);

}

};

只要它在主 UI 上,它就可以正常工作,但它会导致应用程序在加载时滞后。我已经阅读了这三个问题:AsyncTask and getInstalledPackages() fail , PackageManager.getInstalledPackages() returns empty list , Showing ProgressDialog during UI Thread operation in Android我想明白他们在说什么,但我在理解如何让它发挥作用时遇到了问题。我知道延迟来自 List list = pm.getInstalledApplications(PackageManager.GET_META_DATA);我知道 getInstalledApplications(PackageManager.GET_META_DATA);必须在主 UI 上运行,否则应用程序会强制关闭。我该如何去保持 getInstalledApplications(PackageManager.GET_META_DATA);它需要在哪里,但在后台填充列表,这样应用程序就不会被卡住?提前感谢您的帮助。

更新代码以显示 Asynctask。我得到了在异步中运行的代码,但现在它只在 TextView 而不是列表中显示一个结果。我知道它必须是我所缺少的一些简单的东西才能让它发挥作用。

最佳答案

我会修改您的 doInBackground(),使其看起来像这样:

@Override
protected String doInBackground(String... params) {
// perform long running operation operation

for (i = 0; i < list.size(); i++) {

if ((list.get(i).flags & ApplicationInfo.FLAG_SYSTEM) != 1) {

//add all the application names to the same String.
label +=", " + (String) pm.getApplicationLabel(list.get(i));


Log.w("Installed Applications", list.get(i).packageName.toString());

}
}

return label;
}

因此,我会说您的 onPostExecute() 需要看起来像:

    @Override
protected void onPostExecute(String result) {

txtApplications.append(label);

}
}

从现在开始,label 包含了所有的应用名称(因为 label += ...);

关于android - 带有异步任务的 getInstalledApplications(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14227552/

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