Last active
April 22, 2020 20:36
-
-
Save dan085/3fbef48bf306fe00f8e6a0a29fb0a1da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loadInfo.showMessageOKCancel_one_try_again( | |
context, "Error al cargar información", ---> titulo | |
"Ocurrio un problema ", ---> descripción | |
new Function1<MaterialDialog, Unit>() { --> aqui incorporo el listener | |
@Override | |
public Unit invoke(MaterialDialog materialDialog) { | |
AccesoRemoto_Informacion acceso_trasabilidad= new AccesoRemoto_Informacion(AddDataActivity.this); | |
acceso_trasabilidad.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); | |
return null; | |
} | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment