我有一个将自动链接设置为
的TextView<TextView
android:id="@+id/messageDetail_privateText_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="web|phone|email" />
但是当我使用类似http://www.test.com?p1=v1&p2=v2的网址设置文本时,TextView的自动链接无法识别域之后的查询参数。
我可以理解这种网址没有多大意义,但这个问题有解决方法吗?
iOS正在识别参数。
答案 0 :(得分:0)
回答我自己的问题,最终对我有用的是检查字符串的URL并手动添加斜杠。不是世界上最酷的解决方案,而是在这种情况下工作。
代码下方:
protected String normalizeURLs(String html)
{
String[] pieces = html.split(" ");
ArrayList<String> textParts = new ArrayList<>();
for(String piece : pieces) {
try {
URL isURL = new URL(piece);
String protocol = isURL.getProtocol();
String host = isURL.getHost();
String query = isURL.getQuery();
String path = isURL.getPath();
String questionMark = "?";
if (path.equals("")) {
path = "/";
}
if (query == null) {
query = "";
questionMark = "";
}
String url = protocol + "://" + host + path + questionMark + query;
textParts.add(url);
} catch (MalformedURLException exception) {
textParts.add(piece);
}
}
String resultString = "";
for (String s : textParts)
{
resultString += s + " ";
}
return resultString;
}