Android基础到进阶UI爸爸级 TextView介绍+实例,android嵌入式开发环境搭建

android:shadowRadius=“2”

android:text=“右侧添加图片和使用阴影”

android:textColor="@color/color_188FFF"

android:textSize="@dimen/text_size_20" />

<TextView

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:autoLink=“email|phone”

android:gravity=“center_vertical”

android:layout_marginTop="@dimen/dimen_10"

android:text=“可点击跳转邮件:SCC5201314@qq.com\n可点击跳转电话:0215201314”

android:textColor="@color/color_188FFF"

android:textSize="@dimen/text_size_14" />

<TextView

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:ellipsize=“end”

android:gravity=“center_vertical”

android:lineSpacingMultiplier=“1.2”

android:layout_marginTop="@dimen/dimen_10"

android:maxLength=“2”

android:text="TxtView继承了View,它还是Button、EditText两个UI组件类的父类。它的作用是在用户界面上显示文本素。从功能上来看TextView就是个文本编辑器,只不过Android关闭的它的可编辑功能。如果需要一个可编辑的文本框,就要使用到它的子类Editext了,Editext允许用户编辑文本框中的内容。TextView和Editext它俩最大的区别就在于TextView不允许用户编辑文本内容,Editext允许用户编辑文本内容。

下面咱写几个实例来详细了解一下TextView的。"

android:textColor="@color/color_188FFF"

android:textSize="@dimen/text_size_14" />

<TextView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_marginTop="@dimen/dimen_10"

android:background="@drawable/bg_tv_frame_red"

android:padding=“10dp”

android:text=“带着红色边框的文本” />

<TextView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_marginTop="@dimen/dimen_10"

android:background="@drawable/bg_tv_frame_gradient"

android:padding=“10dp”

android:textColor="@color/white"

android:text=“带着边框和背景色渐变的文本” />

background设置边框的文件 android:background="@drawable/bg_tv_frame_red"

<?xml version="1.0" encoding="utf-8"?>

带着边框和背景色渐变 android:background="@drawable/bg_tv_frame_gradient"

<?xml version="1.0" encoding="utf-8"?>

<gradient

android:startColor="@color/color_188FFF"

android:centerColor="@color/color_FF773D"

android:endColor="@color/color_ff0000"

android:type=“linear”

/>

2.在xml中创建,在代码中设置属性

  • 布局文件
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:layout_margin="@dimen/dimen_20"

android:orientation=“vertical”>

<TextView

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:text=“下面是用代码实现效果”

android:textSize="@dimen/text_size_18"

android:layout_marginTop="@dimen/dimen_20"

android:layout_marginBottom="@dimen/dimen_10"

android:textColor="@color/black"

android:textStyle=“bold” />

<TextView

android:id="@+id/tv_flag"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:textColor="@color/color_188FFF"

android:layout_marginTop="@dimen/dimen_10"

android:text=“给文本加划线”

android:textSize="@dimen/text_size_18" />

<TextView

android:id="@+id/tv_gradient"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_marginTop="@dimen/dimen_10"

android:textColor="@color/white"

android:text=“文字渐变是不是很神奇”

android:textSize="@dimen/text_size_18" />

<TextView

android:id="@+id/tv_bg"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_marginTop="@dimen/dimen_10"

android:padding=“10dp”

android:text=“设置背景色”

android:textColor="@color/white"

android:textSize="@dimen/text_size_18" />

<TextView

android:id="@+id/tv_size"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_marginTop="@dimen/dimen_10"

android:textColor="@color/color_ff0000"

android:text=“文字特别大小不一致” />

<TextView

android:id="@+id/tv_onclick"

android:layout_width=“match_parent”

android:layout_marginTop="@dimen/dimen_10"

android:layout_height=“wrap_content”

android:textSize="@dimen/dimen_20"

android:text=“可点击可长按” />

  • 运行结果

  • 在代码中实现

//下划线并加清晰

tv_flag.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG | Paint.ANTI_ALIAS_FLAG);

tv_flag.getPaint().setAntiAlias(true);//抗锯齿

int[] colors = {0xff188fff, 0xffff773D, 0xffff0000};//颜色的数组

LinearGradient mLinearGradient = new LinearGradient(0, 0, 0,

tv_gradient.getPaint().getTextSize(), colors, null, Shader.TileMode.CLAMP);

tv_gradient.getPaint().setShader(mLinearGradient);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值