11

为什么TextView超链接不起作用。

在 custom 中使用超链接dialog box

超链接不出现。

我在哪里弄错了。怎么解决。给我指导。

XML 代码是

<TextView
android:id="@+id/google_Link"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:padding="10dip"
android:textSize="20dip"
android:linksClickable="true"  
android:autoLink="all"
android:textColorLink="#306EFF"
android:text="" />

安卓代码是

TextView googleLink = ( TextView ) layout.findViewById( R.id.google_Link );
googleLink.setClickable(true);
googleLink.setMovementMethod(LinkMovementMethod.getInstance());
googleLink.setText( Html.fromHtml( "<a href=`http://www.google.co.in`>Google</a>" ) );

Android清单代码是

<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

预先感谢。

4

6 回答 6

16

仅替换此链接,它将起作用:

TextView textView=(TextView) findViewById(R.id.link);
textView.setClickable(true);
String linkTxt=getResources().getString(R.string.link);
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setText(Html.fromHtml( linkTxt));

在 strings.xml 中添加:

<string name="link">&lt;a href=http://www.google.co.in&gt;Google&lt;/a&gt;</string>
于 2012-07-10T12:49:55.547 回答
2

这个问题的最佳解决方案是:首先,创建一个Textview。

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/link"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:text="@string/developed_by_bracecodes"/>

然后从 strings.xml 向您的 Textview 添加文本,如下所示:

<string name="developed_by_bracecodes"><a href="http://www.bracecodes.com">Developed by Bracecodes</a>  </string>

注意:不要忘记在链接前添加 http://

然后在您的 java 代码中添加这些行:

TextView link = findViewById(R.id.link);
link.setMovementMethod(LinkMovementMethod.getInstance());

快乐编码!谢谢!

于 2018-04-06T13:33:15.813 回答
1

它不起作用,因为您无法将 href 设置为 a TextView

您需要设置一个 OnClickListener ,它的onClick方法中有这个:

String url = "http://www.google.co.in";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

之后,您可以TextView像这样将侦听器设置为:googleLink.setOnClickListener(myListener);

然后再次运行应用程序,点击应该得到正确处理。

于 2012-07-10T12:36:27.133 回答
0
<TextView 
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:id="@+id/hyperlink" 
android:text="@string/hyperlink"
android:textColorLink="@color/quantum_yellow"
**android:autoLink="web"**
/>

用于autoLink=web将链接文本自动定义为可点击的超链接。您还可以使用来决定它的颜色textColorLink

于 2020-09-21T21:29:15.283 回答
0

您的解决方案就在这里。https://github.com/saket/Better-Link-Movement-Method

implementation 'me.saket:better-link-movement-method:1.1'



 message?.message?.let {
            chatMessageTextView.setText(HtmlCompat.fromHtml(it.trim(), HtmlCompat.FROM_HTML_MODE_LEGACY),TextView.BufferType.SPANNABLE)
        }

  chatMessageTextView.movementMethod = BetterLinkMovementMethod.newInstance().apply {
        setOnLinkClickListener { _, url ->
            // Handle click or return false to let the framework handle this link.

       
            handleMessageLink(itemView.context,url)
            true
        }
    }

     <TextView
            android:id="@+id/chat_message_text_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/files_layout"
            android:layout_marginStart="@dimen/space_ultra_small"
            android:text="@string/text_small"
            android:textColor="@color/black"
            android:padding="@dimen/space_ultra_small"
            android:textColorLink="@color/sky_blue"
            android:textSize="@dimen/text_size_large" />
于 2021-05-06T08:35:05.517 回答
0
public class HtmlTextView extends TextView {
    public HtmlTextView(Context context) {
        super(context);
    }

    public HtmlTextView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public HtmlTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public void setText(CharSequence text, BufferType type) {
        Spannable spannable = linkifyHtml(String.valueOf(text), Linkify.ALL);
        super.setText(spannable, type);
    }

    private static Spannable linkifyHtml(String html, int linkifyMask) {
        Spanned text = Html.fromHtml(html);
        URLSpan[] currentSpans = text.getSpans(0, text.length(), URLSpan.class);

        SpannableString buffer = new SpannableString(text);
        Linkify.addLinks(buffer, linkifyMask);

        for (URLSpan span : currentSpans) {
            int end = text.getSpanEnd(span);
            int start = text.getSpanStart(span);
            buffer.setSpan(span, start, end, 0);
        }
        return buffer;
    }
}

HtmlTextView mText = view.findViewById(R.id.text); mText.setMovementMethod(LinkMovementMethod.getInstance()); mText.setText("<a href= http://www.google.com>Google");

于 2021-08-16T19:16:57.107 回答