¿Alguien me puede decir cómo usar la función setError de manera apropiada para CheckBoxes y RadioButtons? Puedo subir el símbolo del icono de error (!) Después de mi textView pero no puedo ver el mensaje de error. De acuerdo con la documentación de Android: sets the right-hand compound drawable of the TextView to the "error" icon and sets an error message that will be displayed in a popup when the TextView has focus. The icon and error message will be reset to null when any key events cause changes to the TextView's text. If the error is null, the error message and icon will be cleared.
¿Puede alguien dar un ejemplo de la aplicación adecuada de setError en caso de casilla A y radioButton?
Aquí está mi código -Set Error Android
CheckBox box=(CheckBox)findViewById(R.id.propertyStatus1);
box.setError("Error");
su pregunta no está claro – Snicolas
setError mensaje no es visible en el caso de la casilla de verificación y radioButton. –