TextView控件的使用(Android设置文本显示格式)

android:textColor="文本颜色"
android:textSize="文本大小..sp"
android:background="背景颜色 || 图片地址"
android:text="文本内容"


//设置文本位置
android:gravity="center_vertical" //设置垂直居中
android:gravity="right" //设置居右
android:gravity="center_vertical|center_horizontal" //设置垂直水平居中(这个例子说明可以混合)


//设置链接
android:autoLink="all"     //设置自动识别链接所有
android:autoLink="phone"     //设置自动识别链接,phone为链接到电话簿
android:autoLink="email"     //设置自动识别链接,phone为链接到邮箱
android:autoLink="web"     //设置自动识别链接,phone为链接到web网址


//设置图片摆放位置,其中图片所在的位置是app->res->drawable->apple.png
android:drawableLeft="@drawable/apple"   
android:drawableRight="@drawable/apple"
android:drawableTop="@drawable/apple"
android:drawableBottom="@drawable/apple"


//文本过长处理
android:ellipsize="start" 省略号在开头
android:ellipsize="middle" 省略号在中间
android:ellipsize="end" 省略号在结尾
android:ellipsize="marquee"设置跑马灯效果

//设置跑马灯效果
android:ellipsize="marquee"
android:focusable="true"          //设置可以获得焦点(针对键盘)
android:focusableInTouchMode="true"    //设置可以获得焦点(针对触屏),不过要满足上一个是true
android:clickable="true"          //设置可以点击
android:singleLine="true"         //设置单行显示
android:marqueeRepeatLimit="marquee_forever"  //设置时间永远


//设置阴影
//shadowDX、shadowDy、shadowRadius,说明分别是阴影的横、纵坐标偏移,以及阴影的半径
android:shadowColor="#45b97c"
android:shadowRadius="3.0"

//设置字形
android:textStyle="bold|italic"


通过下面程序可以大致浏览以上功能



    
    
    
    

    
    

    
    

    
    

运行结果如下:

TextView控件的使用(Android设置文本显示格式)_第1张图片

工程资源源码:https://download.csdn.net/download/qq_38367681/10768693

你可能感兴趣的:(Android开发技术)