我已经在 xml 中提供了指向 TextView 的电子邮件链接,但是当我单击 TextView 时,它显示不支持的操作错误,如何将活动链接放在 textview 中的电子邮件上?
这是我的 string.xml 文件的代码:
<resources>
<string name="emailLink"><a href="mailto:info@knowledgewoods.in">info@knowledgewoods.in</a></string>
<resources>
和 mylayout.xml
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="15dp"
android:textColor="@color/text_color"
android:layout_marginTop="10dp"
android:id="@+id/text_email"
android:autoLink="email"
android:text="@string/emailLink"/>
我在 android 2.2 及更高版本中运行我的应用程序。
请帮助我...谢谢