android TextView加下划线的方法

如果是在资源文件里,可以这样写.

复制代码 代码如下:

< resources >  
    < string   name = "hello" > < u > phone: 1390123456   
    < string   name = "app_name" > MyLink   

复制代码 代码如下:

 
    phone: 1390123456
    MyLink

如果是代码这样写

复制代码 代码如下:

TextView textView = (TextView)findViewById(R.id.testView);  
textView.setText(Html.fromHtml("" + "hahaha" + "" ));

你可能感兴趣的:(android TextView加下划线的方法)