解决方案 »

  1.   

    在 TextView 中可以设置 html 内容, 把超链接的标签直接设置到 TextView 中即可;超链接示例 : 
            TextView t3 = (TextView) findViewById(R.id.text3);
            t3.setText(
                Html.fromHtml(
                    "<b>text3:</b> Text with a " +
                    "<a href=\"http://www.google.com\">link</a> " +
                    "created in the Java source code using HTML."));
            t3.setMovementMethod(LinkMovementMethod.getInstance());
      

  2.   

    直接写一个textview,跳转就可以了,至于设置颜色,那就更容易了,直接setTextColor();