error Android

Solución Android y Java – CLEARTEXT communication not permitted by network security policy

Resumen: en este post te mostraré la solución al error de Android que dice así: java.net.UnknownServiceException: CLEARTEXT communication to sitio.com not permitted by network security policy Esto es debido a que estamos usando HTTP, y no HTTPS.

Solución Android y Java – CLEARTEXT communication not permitted by network security policy Leer más »

Android - Solución a Cannot bind argument at index 1

Android – Cannot bind argument at index 1 because the index is out of range. The statement has 0 parameters.

En este post voy a explicar cómo solucionar el error de Android y SQLite que dice así: java.lang.IllegalArgumentException: Cannot bind argument at index 1 because the index is out of range. The statement has 0 parameters.  

Android – Cannot bind argument at index 1 because the index is out of range. The statement has 0 parameters. Leer más »

Android - Solución a error WindowManager$BadTokenException Unable to add window

Android: solución a error Unable to add window token null is not valid; is your activity running?

Siguiendo con la solución a errores comunes de Android hoy veremos por qué se origina (y cómo se soluciona) el error que dice algo como: android.view.WindowManager$BadTokenException: Unable to add window — token null is not valid; is your activity running? Esto pasa cuando creamos una alerta o diálogo instanciando a la clase Dialog en Android.

Android: solución a error Unable to add window token null is not valid; is your activity running? Leer más »

Android: solución a Resources$NotFoundException: String resource ID

Este es un post rápido en donde voy a explicar cómo se origina el error y cómo arreglar el error que dice algo así: Resources$NotFoundException: String resource ID at android.content.res.Resources.getText at android.widget.TextView.setText El error nos está indicando que no encuentra un recurso con determinado ID al llamar al método setText de un TextView. Vamos a ver

Android: solución a Resources$NotFoundException: String resource ID Leer más »