iApp文本控件特效

1.设置阴影效果


iApp文本控件特效_第1张图片
图片发自App
width=-2
height=-2
textsize=40sp
textcolor=#ff00be91
layout_gravity=center
text=潇洒的夏夏
shadowcolor=#ffff00ef
shadowradius=10
shadowdx=10
shadowdy=10

shadowcolor:阴影的颜色
shadowdx:水平方向上的偏移量
shadowdy:垂直方向上的偏移量
shadowradius:是阴影的的半径大小

2.实现跑马灯

width=100dp
height=-2
text=i love iApp this my xiaxia
marqueerepeatlimit=marquee_forever
ellipsize=marquee
scrollhorizontally=true
focusableintouchmode=true
focusable=true

注意文字长度要超过控件的宽度,才能显示跑马效果,另外如果文字过长要显示省略号可以设置下面的属性:
ellipsize=start 省略号在开头
ellipsize=middle 省略号在中间
ellipsize=end 省略号在结尾

你可能感兴趣的:(iApp文本控件特效)