我正在为拼车应用程序构建注册页面,我希望只在注册时使用学校的电子邮件地址。如何将@ csus.edu电子邮件输入Android Studio应用程序?
目前我有:
<TextView
android:layout_width="wrap_content"
android:text="Email"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/etEmail"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_width="wrap_content" />
答案 0 :(得分:0)
不要让他们输入,也不要让它出现在输入框中。 类似的东西:
Name: [text box] @csus.edu
所以在这种情况下,&#34;姓名:&#34;和&#34; @ csus.edu&#34;都是标签。
答案 1 :(得分:0)
客户端验证。只要输入任何输入的内容
String end = EmailInput.substring(EmailInput.length() - 9, EmailInput.length());
boolean isValid = end.equals("@csus.edu);
话虽如此,我也同意ergonaut,因为没有给出输入错误电子邮件的选项,从而节省了用户的时间和麻烦。