当前位置:   article > 正文

Android TextView加中划线/下划线_textview中划线

textview中划线

1、textView设置下划线
textView.getPaint().setFlags(Paint. UNDERLINE_TEXT_FLAG ); //下划线 
textView.getPaint().setAntiAlias(true);//抗锯齿 
textView.setText(Html.fromHtml(““+”content”+”“));

2、textView设置中划线
textview.getPaint().setFlags(Paint. STRIKE_THRU_TEXT_FLAG); //中划线 
setFlags(Paint. STRIKE_THRU_TEXT_FLAG|Paint.ANTI_ALIAS_FLAG); // 设置中划线并加清晰

3、textView取消中划线或者下划线
textView.getPaint().setFlags(0); // 取消设置的的划线

********************************************
上面都是在代码中动态的添加,那么xml文件中怎么办呢?

1、添加下划线(这种方式只有APP运行起来才能看到下划线)
(1)、在资源文件中定义字符串,使用标签处理

<string name="zhuce"><u>用户注册协议</u></string>

(2)、在xml文件中引用这个资源文件

  1. <TextView
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:text="@string/zhuce"
  5. android:textSize="20sp"
  6. android:gravity="center"
  7. android:layout_marginLeft="10dp"
  8. android:textColor="#4C80E3"/>

(3)效果图: 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/647977
推荐阅读
相关标签
  

闽ICP备14008679号