2

它可能看起来很简单,但我完全陷入了这个问题,我想在我的应用程序中添加一个超链接例如:www.example of an address with spaces.html

但是当我将 url 放入代码中时,它看起来像这样 在此处输入图像描述

这是我的代码

<TextView
        android:id="@+id/link"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:linksClickable="true"

        android:autoLink="web"
        android:layout_marginLeft="10dp"
        android:textColor="@color/white"
        android:text="http://www.example of an address with spaces.html" />
4

4 回答 4

2

试试下面的代码

tvTermsOfUse.setText(Html.fromHtml(getString(R.string.tv_terms_of_use_html)));
    Linkify.addLinks(tvTermsOfUse, Linkify.ALL);
    tvTermsOfUse.setMovementMethod(LinkMovementMethod.getInstance())

 <TextView
    android:id="@+id/tv_terms_of_use"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:textAlignment="gravity"
    android:gravity="center"
    android:textColor="@android:color/white"
    android:textSize="15sp"
    />


<string name="tv_terms_of_use_html"><![CDATA[This is link to <a href="http://google.com/">Google with spaces</a>.]]></string>
于 2013-09-11T07:39:45.067 回答
1

试试下面的,

TextView mTextView1 = (TextView) findViewById(R.id.my_text_view_html);
String text =
"Visit <a href=\"http://www.google.com/\">Google home page</a>";
mTextView1.setText(Html.fromHtml(text));
mTextView1.setMovementMethod(LinkMovementMethod.getInstance());
于 2013-09-11T07:46:06.670 回答
1

programmatically怎么样做这个简单易行

android:text="http://www.example of an address with spaces.html"您的xml code

将关注添加到您的java code

TextView txt = (TextView) findViewById(R.id.link);
txt.setText(Html.fromHtml("<a href=www.google.com>link with space</a>"));
于 2013-09-11T07:42:32.993 回答
1

试试 XML CDATA

 <string name="demoStr"><Data><![CDATA[ <b>ABC</b> ]]> </Data></string>
于 2013-09-11T09:02:37.710 回答