Ver Mensaje Individual
  #5  
Viejo 22/05/15, 16:10:06
Avatar de portal47
portal47 portal47 no está en línea
Miembro del foro
Mensajes: 215
 
Fecha de registro: jul 2012
Mensajes: 215
Modelo de smartphone: Nexus 4
Mencionado: 1 comentarios
Tagged: 1 hilos
Lo puse aqui y si funciona, justo debajo del doInBackground:

[PHP]
@ Override
protected void onPostExecute(Void args) {
// Lo cate the listview in listview_main.xml
listview = (ListView) findViewById(R.id.listview);
// Pass the results into ListViewAdapter.java
adapter = new ListViewAdapter(MainActivity.this, arraylist);
// Set the adapter to the ListView
listview.setAdapter(adapter);
// Close the progressdialog
mProgressDialog.dismiss();
if(jsonobject==null){
Toast.makeText(getApplicationContext(), "No hay conexion a internet!", Toast.LENGTH_SHORT).show();
}
}[/PHP]

Muchas gracias
Responder Con Cita