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.
我有一个电话号码text view(那是我那里唯一的东西)。我在用 :
text view
Linkify.addLinks(textView, Linkify.ALL);
但是,电话号码无法被 识别linkify。编号的格式为: (123) 456-7890。我也试过1234567890和123.456.7890。没有任何效果。有什么帮助吗?
linkify
(123) 456-7890
1234567890
123.456.7890
谢谢。
在您的文本视图的 XML 文件中添加一个属性android:phoneNumber="true"
android:phoneNumber="true"
在文本视图的点击中试试这个:
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("tel:" + your_phone_number)));
文本将自动具有电话号码的属性。
由于您正在尝试自定义的东西,请参阅此文档
http://developer.android.com/resources/articles/wikinotes-linkify.html
它会帮助你。