gpt4 book ai didi

java - 在 WebView 中打开所需的链接

转载 作者:行者123 更新时间:2023-12-02 11:37:52 25 4
gpt4 key购买 nike

我想以文本形式打开 TextView 中的链接:type ="autolink"它包含一些 URL,但当用户点击它时,打开浏览器而不是 webview Activity

例如

{

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:autoLink="web"
android:text="www.facebook.com"
android:id="@+id/iimage" />

}

因此,请告知用户是否单击了该链接,该链接会在 WebView Activity 的 webView 中打开。如何做到这一点

最佳答案

您需要为 TextView 设置 Spannable 并在该 Spannable 上设置点击监听器。

这里有一个我从一些答案中获取的例子:Android: ClickableSpan in clickable TextView

TextView tv = (TextView)findViewById(R.id.textview01);      
Spannable span = Spannable.Factory.getInstance().newSpannable("test link span");
span.setSpan(new ClickableSpan() {
@Override
public void onClick(View v) {
Log.d("main", "link clicked");
Toast.makeText(Main.this, "link clicked", Toast.LENGTH_SHORT).show();
} }, 5, 9, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

// All the rest will have the same spannable.
ClickableSpan cs = new ClickableSpan() {
@Override
public void onClick(View v) {
Log.d("main", "textview clicked");
Toast.makeText(Main.this, "textview clicked", Toast.LENGTH_SHORT).show();
} };

// set the "test " spannable.
span.setSpan(cs, 0, 5, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

// set the " span" spannable
span.setSpan(cs, 6, span.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

tv.setText(span);

tv.setMovementMethod(LinkMovementMethod.getInstance());

关于java - 在 WebView 中打开所需的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48796029/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com