使用PullToRefresh库不调用自定义适配器getView()

时间:2013-11-13 16:47:51

标签: android android-listview android-arrayadapter custom-adapter pull-to-refresh

使用Chris Banes的PullToRefresh库,我的自定义适配器的getView()方法没有被调用。这段代码很好用没有使用他的库,并且调用了getView()。我一直在调查这几天,无法弄清楚出了什么问题。 非常感谢任何反馈!

MyActivity.java

MyAdapter adapter = new MyAdapter(this, data);
// the following toast displays the correct count
Toast.makeText("MyActivity", adapter.getCount(), Toast.LENGTH_SHORT).show(); 
myListView.setAdapter(adapter);

MyAdapter.java

public class MyAdapter extends ArrayAdapter<Object> {

    private ArrayList<Object> data;
    private LayoutInflater vi;
    private Context context;

    public MyAdapter(Context context, ArrayList<Object> data) {
        super(context, 0);
        this.context = context;
        this.data = data;
        this.vi = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    static class ViewHolder {
        ...
    }

    @Override
    public int getCount() {
        return data.size();
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public Object getItem(int position) {
        return data.get(position);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        // not getting called
        ...
    }
}

2 个答案:

答案 0 :(得分:9)

Google IO 2013在ListView中进行了许多更改以优化结果。我遇到了类似的问题,我没有调用自定义适配器的getView()函数。

根据新的更改,如果您使用“wrap_content”作为视图的layout_height,则只有在用户滚动列表时才会调用getView()。因此,请使用“fill_parent”作为视图的layout_height。它会解决你的问题。

使用,

android:layout_height="fill_parent"

而不是使用

android:layout_height="wrap_content"

答案 1 :(得分:0)

@RTL

你的答案不正确,我试过但却失败了。后来我找到了正确的解决方案。

我们缺少 getCount()

所以我们应该添加

@Override
public int getCount() {
    return yourArr.length;
}