0

我的 EditText 中有一个字符串,并且这个字符串中有一个 URL 链接。

所以我想设置这个链接有下划线和蓝色作为常识。

现在我可以使用“u”标签和 Html.fromHtml() 添加下划线,但不能设置颜色,这是我的代码:

String text = "some string <u><font color=\"#0000FF\">some link</font></u>";
editText.setText(Html.fromHtml(text), TextView.BufferType.SPANNABLE);

有人能帮我吗?谢谢!

4

1 回答 1

5

我在运行 Android 2.2 的模拟器、运行 Android 3.2 的另一个模拟器以及运行 Android 4.0.3 的手机上尝试了此操作,您发布的代码在所有三个平台上都可以正常工作(文本“某些链接”带有下划线和蓝色)。

这是我使用的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<EditText
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:ems="10"
    android:hint="@string/hello_world" >

    <requestFocus />
</EditText>

这是完整的活动代码:

package com.example.andtest01;

import android.app.Activity;
import android.os.Bundle;
import android.text.Html;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends Activity {

    EditText editText;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        editText = (EditText) findViewById(R.id.editText1);

        String text = "some string <u><font color=\"#0000FF\">some link</font></u>";
        editText.setText(Html.fromHtml(text), TextView.BufferType.SPANNABLE);
    }

}

于 2012-09-05T16:42:24.073 回答