Serviços em Android
|
13-01-2013, 12:08
Mensagem: #3
|
|||
|
|||
RE: Serviços em Android
Para fazer este processo usei AsyncTask como mostro embaixo:
class BackgroundTaskList extends AsyncTask<String, Integer, Void>{ //first to start @Override protected void onPreExecute(){ bar = new ProgressDialog(Main.this); bar.setMessage("A Carregar Lista..."); bar.setIndeterminate(true); bar.show(); } //second to start @Override protected Void doInBackground(String... params) { //executei as acções principais aqui } //last to start @Override protected void onPostExecute(Void result){ //e aqui terminei carregando os valores da lista! listPes.setAdapter(adList); bar.dismiss(); } } |
|||
« Mais Antigo | Mais Recente »
|
Mensagem neste Tópico |
Serviços em Android - djpinto - 12-10-2012, 17:50
RE: Serviços em Android - blindado - 13-01-2013, 11:51
RE: Serviços em Android - djpinto - 13-01-2013 12:08
RE: Serviços em Android - blindado - 13-01-2013, 13:09
|
Utilizadores a ver este tópico: 1 Visitante(s)