Hello all the error of the log on an inputText, I do not know how to delete, the app runs but at a certain moment it closes, this one appears in the log.
E/SpannableStringBuilder: SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
Greetings
UPDATE. The problem is an inputtext from an Alerdialog, so I declare it.
builder = new AlertDialog.Builder(context);
final EditText input = new EditText(context);
input.setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL);
input.setHint("0.000");
builder.setView(input).setTitle("Ingrese Cantidad");
builder.setCancelable(false);