Domanda

sto usando un ArrayAdapter per aggiungere elementi a una ListView personalizzata e mostrando i risultati nel mio app Android. Il problema che sto avendo è che l'ArrayAdapter sembra attendere che tutte le voci sono in prima che mostra la vista. Vale a dire, quando si aggiunge gli oggetti al ArrayAdapter e chiamo notifyDataSetChanged, esso non aggiorna il ListView di mostrare l'articolo aggiunto. Si attende che vengono aggiunti tutti gli elementi e GetView è chiamato prima di mostrare gli articoli.

Quello che vorrei che fare è quello di mostrare l'articolo subito dopo aver aggiunto alla ListView. È possibile?

Credo che il codice in questione è la seguente:

r_adapter = new ReminderAdapater(Activity_ContentSearch.this, R.layout.search_listitem, myList);
listView.setAdapter(r_adapter);
...
r_adapter.notifyDataSetChanged();
r_adapter.clear();
for(int i = 0; i < myList.size(); i++)
{
    r_adapter.add(myList.get(i));
    r_adapter.notifyDataSetChanged();
}

Come si può vedere, anche se io chiamo notifyDataSetChanged dopo il metodo Add, che in realtà non aggiornare la visualizzazione. Dopo che è terminato il ciclo sopra la vista è finalmente aggiornato (sulla base di quello che so, è perché GetView non è chiamato solo dopo questa sezione del codice è fatto).

Ho cercato di ignorare il metodo Add della mia ArrayAdapter personalizzato senza fortuna, dal momento che non hanno accesso alla visualizzazione in quel metodo.

Qualsiasi aiuto sarebbe il benvenuto:)

Bara

È stato utile?

Soluzione

interfaccia utente di Android è single-threaded. Non stanno dando il controllo al Android dall'applicazione principale filo ogni volta che si aggiunge una voce alla scheda. Quindi, Android non ha la possibilità di visualizzare le voci fino a tornare il controllo, e non stai facendo che fino ad aver popolato la scheda in ogni sua parte.

Ecco un esempio che mostra l'uso di un AsyncTask compilare un ArrayAdapter progressivamente tramite un thread in background.

/***
  Copyright (c) 2008-2012 CommonsWare, LLC
  Licensed under the Apache License, Version 2.0 (the "License"); you may not
  use this file except in compliance with the License. You may obtain   a copy
  of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required
  by applicable law or agreed to in writing, software distributed under the
  License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS
  OF ANY KIND, either express or implied. See the License for the specific
  language governing permissions and limitations under the License.

  From _The Busy Coder's Guide to Android Development_
    http://commonsware.com/Android
*/

package com.commonsware.android.async;

import android.app.ListActivity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.SystemClock;
import android.widget.ArrayAdapter;
import android.widget.Toast;
import java.util.ArrayList;

public class AsyncDemo extends ListActivity {
  private static final String[] items={"lorem", "ipsum", "dolor",
                                      "sit", "amet", "consectetuer",
                                      "adipiscing", "elit", "morbi",
                                      "vel", "ligula", "vitae",
                                      "arcu", "aliquet", "mollis",
                                      "etiam", "vel", "erat",
                                      "placerat", "ante",
                                      "porttitor", "sodales",
                                      "pellentesque", "augue",
                                      "purus"};
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    setListAdapter(new ArrayAdapter<String>(this,
                        android.R.layout.simple_list_item_1,
                        new ArrayList<String>()));

    new AddStringTask().execute();
  }

  class AddStringTask extends AsyncTask<Void, String, Void> {
    @Override
    protected Void doInBackground(Void... unused) {
      for (String item : items) {
        publishProgress(item);
        SystemClock.sleep(200);
      }

      return(null);
    }

    @SuppressWarnings("unchecked")
    @Override
    protected void onProgressUpdate(String... item) {
      ((ArrayAdapter<String>)getListAdapter()).add(item[0]);
    }

    @Override
    protected void onPostExecute(Void unused) {
      Toast
        .makeText(AsyncDemo.this, "Done!", Toast.LENGTH_SHORT)
        .show();
    }
  }
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top