我正在为大学开发一个Android应用程序。我在我的应用的某些活动中提到了一个电子邮件ID。我希望用户在点击此电子邮件ID时发送邮件,因为我们使用mailto功能使用HTML。我搜索了所有可能的方法,但无法得到相对于我的要求的解决方案。这是我的代码的一小部分。
<TextView
android:id="@+id/textView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView5"
android:layout_below="@+id/textView5"
android:inputType="textEmailAddress"
android:text="admissions@abc.edu" />
有没有办法实现这一目标。请有人指导我。
提前致谢。
答案 0 :(得分:0)
将android:autoLink="email"
添加到您的TextView
<TextView
android:id="@+id/textView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView5"
android:layout_below="@+id/textView5"
android:autoLink="email"
android:inputType="textEmailAddress"
android:text="admissions@abc.edu" />