0

我有一个带有自定义适配器的 ListView,我在其中加载信息。我将从数据库检索的所有数据加载到 ArrayList 中(所有数据都在那里),并且我正在复制我需要的数据,因为我向下滚动到另一个 ArrayList 以显示它:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.all_products); 
    footerView = ((LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footer_view, null, false);
    lv = (ListView) findViewById(R.id.lista);
    lv.setOnScrollListener(new OnScrollListener() {
    private void isScrollCompleted() {
    if (lv.getHeight() == footerView.getBottom(){
        update();
    }
public void update(){
    cargando=true;
    lv.removeFooterView(footerView);        
    eventos=generarClaseEventos(null, eventosFULL,eventos);
    adapter = new MyClassAdapter(AllProductsActivity.this,R.id.lista,eventos);              
    Comparator<Evento> comparador = new Comparator<Evento>() {
        @Override //metodo que compara fechas
        public int compare(Evento e1, Evento e2) {
            if (e1 == null) return 1;
            return e1.getFecha().compareTo(e2.getFecha());
        }
       };                   
       int index= lv.getFirstVisiblePosition(); //almaceno el indice y la posición
       View v = lv.getChildAt(0);
       int top = (v == null) ? 0 : v.getTop();                 
       adapter.sort(comparador);//llamo al metodo sort que ordena
       lv.addFooterView(footerView);
       lv.setAdapter(adapter);
       adapter.notifyDataSetChanged();                  
       lv.setSelectionFromTop(index, top); //restauro la posicion      
       cargando=false;          
}

我遇到的问题是,当我到达列表视图的底部时,我一直在加载数据,直到应用程序崩溃。我得到了列表视图底部和页脚视图 int,它们一直都是一样的,就像我一直在向下滚动但我不是一样。
为什么会这样?我正在通知我的适配器。

4

1 回答 1

0

解决了:

public void update(){
cargando=true;
lv.removeFooterView(footerView);        
eventos=generarClaseEventos(null, eventosFULL,eventos);
adapter = new MyClassAdapter(AllProductsActivity.this,R.id.lista,eventos);              
Comparator<Evento> comparador = new Comparator<Evento>() {
    @Override //metodo que compara fechas
    public int compare(Evento e1, Evento e2) {
        if (e1 == null) return 1;
        return e1.getFecha().compareTo(e2.getFecha());
    }
   };                   
   int index= lv.getFirstVisiblePosition(); //almaceno el indice y la posición
   View v = lv.getChildAt(0);
   int top = (v == null) ? 0 : v.getTop();       
   footerView = ((LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footer_view, null, false);          
   adapter.sort(comparador);//llamo al metodo sort que ordena
   lv.addFooterView(footerView);
   lv.setAdapter(adapter);
   adapter.notifyDataSetChanged();                  
   lv.setSelectionFromTop(index, top); //restauro la posicion      
   cargando=false;          

}

于 2013-08-05T10:01:12.800 回答