我正在创建一个Android应用程序并定义了一个活动,如下所示:
<activity
android:name="com.scheme.app.MainActivity"
android:screenOrientation="portrait"
android:theme="@style/MainActivityTheme">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="invite"
android:scheme="schemeapp" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
点击网址 “schemeapp://邀请” 时,系统会将用户带到MainActivity。
我有一个包含以下内容的textView:
textView.setText("Testing custom scheme - schemeapp://invite with http http://www.LMNGTFY.com");
我需要制作网址(http://www.LMNGTFY.com)以及自定义网址(schemeapp:// invite)可点击。
我已尝试过的内容:
String text = "Testing custom scheme - schemeapp://invite with http http://www.LMNGTFY.com";
textView.setText(text);
Linkify.addLinks(textView, Linkify.WEB_URLS | Linkify.PHONE_NUMBERS | Linkify.EMAIL_ADDRESSES | Linkify.ALL);
Pattern urlDetect = Pattern.compile("(schemeapp):\\/\\/([a-zA-Z0-9.]+)");
Matcher matcher = urlDetect.matcher(text);
String scheme = null;
while (matcher.find()) {
String customSchemedUrl = matcher.group(0);
Uri uri = Uri.parse(customSchemedUrl);
scheme = uri.getScheme();
break;
}
if (!TextUtils.isEmpty(scheme)) {
Linkify.addLinks(textView, urlDetect, scheme);
}
如果我删除以下代码行来检测网址,则自定义方案网址会起作用:
Linkify.addLinks(textView, Linkify.WEB_URLS | Linkify.PHONE_NUMBERS | Linkify.EMAIL_ADDRESSES | Linkify.ALL);
如果我尝试将http添加为自定义方案网址,则http网址无法点击。
编辑:澄清
我不能使用HTML,因为用户输入也会显示在TextView上,需要链接。
你能帮忙吗? 感谢答案 0 :(得分:1)
这是一个选择:
final Spanned html = Html.fromHtml("Testing custom scheme - <a href='schemeapp://invite'>schemeapp://invite</a> with http http://www.LMNGTFY.com";);
helpText.setText(html);
helpText.setMovementMethod(new LinkMovementMethod());