赞
踩
本人安卓初学者,小白一枚,希望以写博客的方法巩固已学的技能,讲的可能不好,望大家见谅!
不墨迹 直接上 效果图
xml文件中(中划线和下划线一样 有个 id 就行)
<TextView
android:id="@+id/txv"
android:text="中划线、下划线"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
java文件中
txv.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG); //中划线
txv.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG); //下划线
注意事项
<TextView
android:id="@+id/txvpmd"
android:layout_height="wrap_content"
android:layout_width="100dp"
android:textSize="20sp"
android:layout_marginTop="20dp"
android:text="两次返回键才返回!两次返回键才返回!两次返回键才返回! "
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"/>
当文字显示不下时 :
android:ellipsize = “marquee” 跑马灯效果
android:ellipsize = “end” 省略号在结尾
android:ellipsize = “start” 省略号在开头
android:ellipsize = “middle” 省略号在中间
android:marqueeRepeatLimit=“marquee_forever” 表示跑马灯不停的跑~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。