2

我已经自定义了我的 ListAdapter,并在 1 行中显示了 3 个不同的图像(项目)。它完美地工作(根据它的功能)。但是,无法平滑滚动 ListView。

我在 ImageViews 上使用 setBackgroundImage 并使用 HashMap 来缓存 resourceId;所以我不必使用

resId=getContext().getResources().getIdentifier(resName, "drawable",appContext.getPackageName());

一次又一次。

我想我错过了一些东西,因为 ListView 不能很好地滚动。此外,如果我在平板电脑上尝试它,我的代码会自动连续填充 3 个以上的项目,平板电脑的列表视图几乎是不可滚动的。

我在这里做错了什么?

更新:

我在我的 Flags(国家标志)活动的 onCreate 方法中以编程方式创建 ListView:

root=(ViewGroup)this.findViewById(R.id.root);

    listView=new ListView(this);
    listView.setLayoutParams(new LayoutParams(
        LayoutParams.MATCH_PARENT,
        LayoutParams.MATCH_PARENT));

    /*
    ArrayList<Country> dataList=new ArrayList<Country>(){{
        add(new Country("jp"));
        add(new Country("de"));
        add(new Country("it"));
    }};*/

    CountryListAdapter countryListAdapter=new CountryListAdapter(this);


    countryListAdapter.setDataSource(allCountries);


    listView.setAdapter(regionListAdapter);
    listView.setBackgroundColor(0xFF000000);
    listView.setDividerHeight(0);

    root.addView(listView);

4

3 回答 3

9

学习,学习和学习;-)

我的提示是使用ViewHolder模式,用于大量相同布局的项目(即使它是最简单的,例如单个 TextView)

还有这个ViewHolder实现示例/库

此外,如果您确实在 ListView 项目布局中使用图像,您可以使用一些库来异步下载图像,例如:

于 2013-04-24T20:02:35.090 回答
4
  1. 使用静态 ViewHolder 模式

  2. 膨胀布局是一项昂贵的任务,因此尽可能避免膨胀布局
    替换

    LayoutInflater mInflater = LayoutInflater.from(context);
    convertView = mInflater.inflate(R.layout.listview_item, null);
    

    if (convertView == null) {
    
        LayoutInflater mInflater = LayoutInflater.from(context);
        convertView = mInflater.inflate(R.layout.listview_item, null);
    }
    
  3. 在单独的线程中执行图像加载任务,因此 getView 仅专注于视图绘图

  4. 添加<item name="android:windowNoTitle">true</item>您的活动主题

  5. android:animationCache="false"在 ListView 中添加属性

  6. android:scrollingCache="false"在 ListView 中添加属性

于 2014-02-10T10:24:08.903 回答
2

您应该使用View Holder模式,还应在未连接调试器的情况下测试滚动是否缓慢。

于 2013-04-24T19:57:43.553 回答