安装配置
参考 https://www.runoob.com/w3cnote/android-app-develop-learning.html
项目结构
基础属性
属性名 | 详解 |
---|
layout_width | 组件宽度 | layout_height | 组件高度 | id | 组件id | text | 设置文本内容 | textColor | 设置字体颜色 | textStyle | 设置字体样式 normal(无效果)bold(加粗)italic(斜体) | textSize | 字体大小单位:sp | background | 背景颜色 | gravity | 设置内容对齐方向 |
带阴影的TextView
- android:shadowColor:设置阴影颜色(需与shadowRadius一起使用)
- android:shadowRadius:设置阴影模糊程度,设为0.1就变成字体颜色(推荐3.0)
- android:shadowDx:设置阴影在水平方向的偏移,就是水平方向阴影开始的横坐标位置
- android:shadowDy:设置阴影在垂直方向的偏移,就是垂直方向阴影开始的纵坐标位置
实现跑马灯效果的TextView
- android:sinleLine:内容单行显示
- android:focusable:是否可以获取焦点
- android:focusableInTouchMode:用于控制视图在触摸模式下是否可以聚焦
- android:ellipsize:在哪里省略文本
- android:marqueeRepeatLimit:字幕动画重复次数
关键语句:<requestFocus/>
|