Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发我的 Android 应用程序,我在我的 strings.xml 文件中保存了一些包含数据、电话号码和电子邮件地址的文本,并在我的 TextView 中显示该文本。当有人点击电话号码拨打该号码时,是否有可能?我想用电子邮件地址做同样的事情......
在您的 textView Xml 中使用此行作为电话
android:autoLink="phone" android:linksClickable="true"
这对于电子邮件:
android:autoLink="email" android:linksClickable="true"
编辑
如果您想检查电子邮件、电话号码和网址,请使用以下几行:
android:autoLink="web|email|phone" android:linksClickable="true"