TextView控件的介绍及实现跑马灯的效果
TextView
1.概念:用来显示文本的控价,被称之为文本域。
2.常用的属性:
text:显示的内容
textSize:文字的大小
textColor:文字的颜色
visibility:是否显示
maxLength:最大长度
maxLines:最大行数
autoLink:自动链接的类型
3.TextView呈现跑马灯的效果
android:singleLine="true" ——》单行显示
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
andorid:scrollHorizontally="true"
注意:如果在TextView上需要实现跑马灯的效果,那么这个TextView必须获取焦点
4.TextView呈现图片
如果需要在TextView上显示图片可以使用backGround属性。
如果需要呈现文字和图片都出现的效果,就需要:drawableLeft/Top/Left/Right/Bottom等属性了