本文介绍了如何设置集中的EditText在Android中验证后主动?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果用户输入一个无效的电子邮件或离开它空,我想显示敬酒消息,将焦点设置到电子邮件的文本字段。
If a user enters an invalid email or leaves it empty, I want to show a Toast message and set the focus to the email text field.
推荐答案
试试这个,
EditText etEmailID = (EditText) layout.findViewById(R.id.etEmailID);
String emailID= etEmailID.getText().toString();
Context mContext = MainActivity.this; // Your_Context
if(emailID.isEmpty() || !android.util.Patterns.EMAIL_ADDRESS.matcher(emailID.matches())
{
Toast.makeText(mContext, "Please enter valid recipient address", Toast.LENGTH_LONG).show();
etEmailID.requestFocus(emailID.length());
}
希望它会帮助你。
Hope it will help you.
这篇关于如何设置集中的EditText在Android中验证后主动?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!