- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有一个简单的 TextView
,本地电话号码是 852112222 或 (8 5) 211 2222。
我需要它是可点击的,所以我自然而然地使用了 android:autoLink="all"
。
但由于某种原因,我不明白同一个电话号码在所有设备上都没有“关联”。
在普通的 Genymotion 设备上它不起作用。在我的个人 OnePlus2 设备上它可以工作。在不同设备上的一堆测试 - 没有运气。
可能是什么问题?
用户帐户偏好?安卓版?奥姆?还有什么?
最佳答案
这是我的调查。
我创建了一个新项目,并将 android:autoLink="all"
添加到 activity_main.xml
的 TextView 中。感谢 Android Studio 的开发者,我看到了预览,发现了一些有趣的东西:
12345
未链接123456
未链接1234567
链接12345678
链接123456789
未链接1234567890
未链接12345678901
已链接123456789012
未链接结果在我的手机上是一样的。于是我查看了源代码,搜索了关键字autolink,然后我发现了这个:
private void setText(CharSequence text, BufferType type,
boolean notifyBefore, int oldlen) {
...
// unconcerned code above
if (mAutoLinkMask != 0) {
Spannable s2;
if (type == BufferType.EDITABLE || text instanceof Spannable) {
s2 = (Spannable) text;
} else {
s2 = mSpannableFactory.newSpannable(text);
}
if (Linkify.addLinks(s2, mAutoLinkMask)) {
text = s2;
type = (type == BufferType.EDITABLE) ? BufferType.EDITABLE : BufferType.SPANNABLE;
/*
* We must go ahead and set the text before changing the
* movement method, because setMovementMethod() may call
* setText() again to try to upgrade the buffer type.
*/
mText = text;
// Do not change the movement method for text that support text selection as it
// would prevent an arbitrary cursor displacement.
if (mLinksClickable && !textCanBeSelected()) {
setMovementMethod(LinkMovementMethod.getInstance());
}
}
}
...
// unconcerned code above
}
所以现在关键字是Linkify
。对于 addLinks
:
public static final boolean addLinks(@NonNull Spannable text, @LinkifyMask int mask) {
...
if ((mask & PHONE_NUMBERS) != 0) {
gatherTelLinks(links, text);
}
...
}
private static final void gatherTelLinks(ArrayList<LinkSpec> links, Spannable s) {
PhoneNumberUtil phoneUtil = PhoneNumberUtil.getInstance();
Iterable<PhoneNumberMatch> matches = phoneUtil.findNumbers(s.toString(),
Locale.getDefault().getCountry(), Leniency.POSSIBLE, Long.MAX_VALUE);
for (PhoneNumberMatch match : matches) {
LinkSpec spec = new LinkSpec();
spec.url = "tel:" + PhoneNumberUtils.normalizeNumber(match.rawString());
spec.start = match.start();
spec.end = match.end();
links.add(spec);
}
}
然后,不好的事情发生了,SDK没有PhoneNumberUtil
,特别是下面这3个类:
import com.android.i18n.phonenumbers.PhoneNumberMatch;
import com.android.i18n.phonenumbers.PhoneNumberUtil;
import com.android.i18n.phonenumbers.PhoneNumberUtil.Leniency;
目前,第一个原因浮出水面:Locale.getDefault().getCountry()
。
所以我去设置,找到语言,选择中文。结果如下:
12345
已链接123456
链接1234567
链接12345678
链接123456789
链接1234567890
链接12345678901
已链接123456789012
链接其次,对于com.android.i18n.phonenumbers
的包,我发现了这个:
https://android.googlesource.com/platform/external/libphonenumber/+/ics-factoryrom-2-release/java/src/com/android/i18n/phonenumbers
如果您有兴趣,请查看上面的链接。请注意 URL:ics-factoryrom-2-release
。所以我非常怀疑这是平台相关。
对于解决方案,CleverAndroid 是对的,完全控制 LinkMovementMethod
是一个不错的选择。
关于android:autoLink 的电话号码并不总是有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40788608/
我是一名优秀的程序员,十分优秀!