Good morning Guys, I have a problem with my Alert:
In it I have an EditText, but I can not declare the EditText with type numbers (android: inputType="number"). Any ideas?
Here is the alert code:
public void exibirMensagemEdt(String titulo, String texto){
AlertDialog.Builder mensagem = new AlertDialog.Builder(TelaCardapio.this);
mensagem.setTitle(titulo);
mensagem.setMessage(texto);
// DECLARACAO DO EDITTEXT
final EditText input = new EditText(this);
mensagem.setView(input);
mensagem.setNeutralButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(getApplicationContext(), input.getText().toString().trim(),
Toast.LENGTH_SHORT).show();
}
});
mensagem.show();
// FORÇA O TECLADO APARECER AO ABRIR O ALERT
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
}