如何获取应用列表

时间:2011-03-24 22:48:40

标签: android android-emulator android-layout

我从互联网上获得了这个代码,我想要获得手机上所有应用程序的列表,并根据它工作的网页上的评论判断,但我似乎无法让它为我工作。它似乎是getPacketManager()给我的问题。有人可以看看代码并向我解释我要做些什么才能让它正常工作?

这是我的全班...我甚至无法运行,在有“getPackageManager()”的3个位置,它在屏幕左边给我一个错误,说“方法getPackageManager( )未定义类型getApps“

package cians.app;

import java.util.ArrayList;
import java.util.List;

import android.app.Activity;
import android.content.pm.PackageInfo;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class getApps{

class PInfo {
private String appname = "";
private String pname = "";
private String versionName = "";
private int versionCode = 0;
private Drawable icon;
private void prettyPrint() {
    System.out.print(appname + "\\t" + pname + "\\t" + versionName + "\\t"            +versionCode + "\\t");
}
}

private void listPackages() {
ArrayList<PInfo> apps = getInstalledApps(false); /* false = no system packages */
final int max = apps.size();
for (int i=0; i<max; i++) {
    apps.get(i).prettyPrint();
}
}

private ArrayList<PInfo> getInstalledApps(boolean getSysPackages) {
ArrayList<PInfo> res = new ArrayList<PInfo>();        
List<PackageInfo> packs = getPackageManager().getInstalledPackages(0);
for(int i=0;i<packs.size();i++) {
    PackageInfo p = packs.get(i);
    if ((!getSysPackages) && (p.versionName == null)) {
        continue ;
    }
    PInfo newInfo = new PInfo();
    newInfo.appname = p.applicationInfo.loadLabel(getPackageManager()).toString();
    newInfo.pname = p.packageName;
    newInfo.versionName = p.versionName;
    newInfo.versionCode = p.versionCode;
    newInfo.icon = p.applicationInfo.loadIcon(getPackageManager());
    res.add(newInfo);
}
return res; 
}}

1 个答案:

答案 0 :(得分:8)

getPackageManager()是'Context'类的一种方法,因此您可以从任何扩展'Context'的对象中调用它。类Activity扩展了上下文,主类扩展了Activity,因此您可以从主类对象中调用getPackageManager()。如果您的课程没有延伸ContextgetApps课程就是这种情况),则无法从中调用getPackageManager()。您需要先获取活动上下文。

编辑:

好的,您需要将活动传递给此课程:

在getApps类中添加

private Context parent = null;
public getApps(Context _parent) // a constructor that receives the context as parameter
{
   parent = _parent;
}

public String getInfo() { // your implementation here... }

并将getPackageManager()...更改为parent.getPackageManager()...

在您的主要活动中,创建一个getApps对象,然后调用它来获取信息:

getApps appsGetter = new getApps(this); // "this" is your activity actually,which extends Context
String info = appsGetter.getinfo();

现在你仍然需要实现getInfo(),但它不应该那么难。还有一件事,Java中的类以大写字母开头,因此getApps考虑将其称为GetAppsAppsGetter