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.
我有一个包含电话号码的 TextView,例如“01.40.56.55.20”(法国号码)。
在这种情况下,Android 将 1.40.56.55 识别为 IP 地址并为其添加链接/下划线。
如何删除这个?
非常感谢。
将以下属性设置为TextView以将数字呈现为电话号码:
TextView
android:autoLink="phone"
或者只是将上面的“电话”切换为“无”以保持清晰。