Listview显示垃圾值

时间:2013-07-12 07:08:10

标签: java android listview android-listview android-widget

您好我正在做示例项目,因为我有一个像listitem这样的问题显示了一些垃圾值。不知道该怎么解决。任何人都可以帮助我。

这是我的活动:

public class MainActivity extends Activity {
ListView app_List;
private ArrayList<AppInfo> infoList;
private ArrayAdapter<AppInfo> adpt;
@SuppressWarnings("unchecked")
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);
    app_List = (ListView)findViewById(R.id.listView1);
    infoList = getListOfUserInstalledApps();
    }

   private ArrayList<AppInfo> getListOfUserInstalledApps() {
    // TODO Auto-generated method stub
    List<PackageInfo> apps = getPackageManager().getInstalledPackages(0);
    System.out.println("No. of applications installed on the device: "+apps.size());
    ArrayList<AppInfo> infoList1 = new ArrayList<AppInfo>();
    for(int i=0;i<apps.size();i++) {        
        PackageInfo p = apps.get(i);        
        /*if ((!getSysPackages) && (p.versionName == null)) {      
            continue ;        }*/

        AppInfo info = new AppInfo();
        //info.appname = p.applicationInfo.loadLabel(getPackageManager()).toString();
        info.pname = p.packageName;
        System.out.println("application name: "+info.pname);
        //info.pname = p.packageName;
        infoList1.add(info);

    }
    return infoList1;
}
static class AppInfo {
    //private String appname = "";    
    private String pname = "";    
    //private String versionName = "";    
    //private int versionCode = 0;    
    //private Drawable icon;

}


@Override
protected void onResume() {
    // TODO Auto-generated method stub
    super.onResume();
    adpt =  new ArrayAdapter<AppInfo>(this,android.R.layout.simple_list_item_1, infoList);
    app_List.setAdapter(adpt);

}
}

参考屏幕截图

http://i.stack.imgur.com/w4Axi.png

2 个答案:

答案 0 :(得分:1)

ListView显示的不是垃圾,而是对象AppInfo的引用的人类表示。您有两种方法可以解决您的问题。您可以将ArrayList<String>代替ArrayList<AppInfo>传递给ArrayAdapter,或覆盖getView中的ArrayAdapter

修改

@Luksprog建议的那样(请参阅下面的评论),您也可以覆盖AppInfo.toString()以便返回pname

答案 1 :(得分:0)

您的屏幕截图显示了每个AppInfo对象的toString值。 AppInfo应覆盖toString以将结构显示为您想要的字符串。

请参阅http://developer.android.com/reference/android/widget/ArrayAdapter.html