TextView(文本框)详解 文字跑马灯效果

简介

TextView是Android中最常见的控件之一,常用来显示一段文本。TextView继承于View,我们经常在xml布局文件中对TextView属性进行设置,本文我们将对TextView的常用属性进行讲解。如果想了解更多,也可以查阅官方文档,TextView

常用属性

  • id :设置控件的id 用于java代码中找到该控件
  • layout_width : 控件的宽度 常用值 match_parent(填充父容器) wrap_content(包裹内容)
  • layout_height : 控件的高度 常用值 match_parent(填充父容器) wrap_content(包裹内容)
  • text : 文本内容(建议使用@string/xxx的形式设置)
  • background : 背景填充(使用背景颜色或drawable资源)
  • textColor textSize textStyle: 字体颜色 字体大小 字体样式
  • gravity : 字体或内容的对齐方式
  • layout_gravity :控件的对齐方式

效果预览

现在我们使用相关属性实现一些TextView的效果,预览图如下:


textview.gif

基础样式

我们在布局文件中添加一个TextView控件

<TextView
            android:id="@+id/tv_style"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:paddingHorizontal="16dp"
            android:text="示例文本 example"
            android:layout_gravity="center_horizontal"
            android:textColor="#00FA9A"
            android:textSize="16sp"
            android:textStyle="italic|bold"/>
  • 设置字体颜色中绿色:textColor="#00FA9A"
  • 设置字体大小16sp:textSize="16sp"
  • 设置字体形状斜体加粗:textStyle="italic|bold"

背景边框

<TextView
            android:id="@+id/tv_background"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:paddingHorizontal="16dp"
            android:text="示例文本 example"
            android:layout_gravity="center_horizontal"
            android:textColor="#DC143C"
            android:textSize="16dp"
            android:background="@drawable/textview_background"/>
  • 设置控件背景:background="@drawable/textview_background"

background属性可以为控件添加背景,其值既可以是颜色值,也可以是drawable资源。上面我们使用了drawable,并设置了边框,drawable代码如下

textview_background.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 实心 -->
    <solid android:color="#FFFFFF"/>
    <!-- 边框 -->
    <stroke
        android:width="0.5dp"
        android:color="#FFA500"/>
    <!-- 圆角 -->
    <corners android:radius="3dp"/>
    <!-- 边距 -->
    <padding
        android:top="2dp"
        android:bottom="2dp"
        android:left="6dp"
        android:right="6dp"/>
</shape>

背景渐变

我们可以通过修改上面的drawable实现渐变色背景
textview_gradient_background.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="#FFA500"
        android:endColor="#FF00FF"
        android:angle="360"
        android:centerX="0.5"
        android:centerY="0.5"/>
    <corners
        android:radius="3dp"/>
</shape>
  • 设置背景:background="@drawable/textview_gradient_background"

字体渐变

以下代码实现文本渐变

<TextView
            android:id="@+id/tv_text_gradient"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:paddingHorizontal="16sp"
            android:text="示例文本 example"
            android:layout_gravity="center_horizontal"
            android:textSize="16dp" />

Java

TextView textGradient = (TextView)findViewById(R.id.tv_text_gradient);//找到控件
LinearGradient mLinearGradient = new LinearGradient(0, 0,
   tv_text_gradient.getPaint().getTextSize()* tv_text_gradient.getText().length(),0, 
   Color.parseColor("#FFFF68FF"), 
   Color.parseColor("#FFFED732"),
   Shader.TileMode.CLAMP);//创建线性渐变
   textGradient.getPaint().setShader(mLinearGradient);//设置渐变色
   textGradient.invalidate();

文字跑马灯

<TextView
            android:id="@+id/tv_marquee"
            android:layout_width="220dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="10dp"
            android:background="@drawable/textview_background"
            android:ellipsize="marquee"
            android:scrollHorizontally="true"
            android:marqueeRepeatLimit="marquee_forever"
            android:paddingHorizontal="16dp"
            android:text="当那繁华落尽,剩下的是满地忧伤。"
            android:textColor="@color/crimson"
            android:textSize="16dp"
            android:singleLine="true" />

Java

TextView textView_marquee = (TextView)findViewById(R.id.tv_marquee);
        textView_marquee.setFocusable(true);
        textView_marquee.setSelected(true);
        textView_marquee.setFocusableInTouchMode(true);

想实现文字跑马灯,需要设置如下属性,如果实现不了,可能是缺少了某个属性。marqueeRepeatLimit="marquee_forever"属性控制循环次数

  • ellipsize="marquee"
  • scrollHorizontally="true"
  • marqueeRepeatLimit="marquee_forever"
  • singleLine="true"
  • focusable="true"
  • focusableInTouchMode="true"
  • textView_marquee.setSelected(true);(Java)

文本环绕图片

单个TextView环绕图片通过drawableXxx很容易实现,当然也可以通过ImageView实现,这里就先不讲了。

TextView
            android:id="@+id/tv_image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:paddingHorizontal="16dp"
            android:text="示例文本"
            android:layout_gravity="center_horizontal"
            android:textSize="16sp"
            android:drawableTop="@mipmap/ic_launcher"
            android:drawableRight="@mipmap/ic_launcher"/>
  • 上环绕drawableTop="@mipmap/ic_launcher"
  • 右环绕drawableRight="@mipmap/ic_launcher"
  • 底环绕drawableBottom="@mipmap/ic_launcher"
  • 左环绕drawableLeft="@mipmap/ic_launcher"

结束语

本文讲解了TextView的一些简单应用,希望能帮到你。如果发现有什么错误的地方,欢迎留言指出,谢谢阅读。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,009评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,808评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,891评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,283评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,285评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,409评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,809评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,487评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,680评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,499评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,548评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,268评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,815评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,872评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,102评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,683评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,253评论 2 341