android里TextView加下划线的几种方式

1.如果在xml中


    phone:0123456
    MyLink





2.如果在代码中

(1) 

TextView textView = (TextView)findViewById(R.id.tv_test); 
textView.setText("0123456");

(2)

tvTest.getPaint().setFlags(Paint. UNDERLINE_TEXT_FLAG ); //下划线
tvTest.getPaint().setAntiAlias(true);//抗锯齿

 

你可能感兴趣的:(android里TextView加下划线的几种方式)