本站消息

  出租广告位,需要合作请联系站长

  今日名言-想象你自己对困难作出的反应,不是逃避或绕开它们,而是面对它们,同它们打交道,以一种进取的和明智的方式同它们奋斗 。——马克斯威尔·马尔兹

  今日名言-用谅解、宽恕的目光和心理看人、待人。人就会觉得葱笼的世界里,春意盎然,到处充满温暖。——蔡文甫


+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

暂无数据

Android基础到进阶UI爸爸级 TextView介绍+实例

发布于2021-07-24 20:56     阅读(618)     评论(0)     点赞(13)     收藏(4)


TextView是什么

向用户显示文本,并可选择允许他们编辑文本。TextView是一个完整的文本编辑器,但是基类为不允许编辑;其子类EditText允许文本编辑。

咱们先上一个图看看TextView的继承关系:

从上图可以看出TxtView继承了View,它还是Button、EditText等多个组件类的父类。咱们看看这些子类是干嘛的。

  • Button:用户可以点击或单击以执行操作的用户界面元素。
  • CheckedTextView:TextView支持Checkable界面和显示的扩展。
  • Chronometer:实现简单计时器的类。
  • DigitalClock:API17已弃用可用TextClock替代。
  • EditText:用于输入和修改文本的用户界面元素。
  • TextClock:可以将当前日期和/或时间显示为格式化字符串。

看看他的儿子都这么牛掰,何况是爸爸,今天咱就看看这个爸爸级组件:TextView

使用TextView

1.在xml中创建并设置属性

咱们看上图说话。上图的文字显示多种多样,但是也仅包含TextView的部分功能,看看这多种多样的显示也是比较有意思的。

下面咱看看代码实践:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent"
  5.     android:layout_margin="@dimen/dimen_20"
  6.     android:orientation="vertical">
  7.     <!--在Design中表示可从左侧控件展示处拖拽至布局文件上,创建简单一个TextView。-->
  8.     <TextView
  9.         android:id="@+id/textView"
  10.         android:layout_width="match_parent"
  11.         android:layout_height="wrap_content"
  12.         android:text="TextView" />
  13.     <!--修改颜色、大小-->
  14.     <!--设置颜色 @color/color_ff0000位置:app/values/colors-->
  15.     <!--设置大小 @dimen/text_size_18位置:app/values/dimens-->
  16.     <!--设置内容 @string/str_setting_color_size位置:app/values/strings-->
  17.     <TextView
  18.         android:layout_width="match_parent"
  19.         android:layout_height="wrap_content"
  20.         android:text="@string/str_setting_color_size"
  21.         android:layout_marginTop="@dimen/dimen_10"
  22.         android:textColor="@color/color_ff0000"
  23.         android:textSize="@dimen/text_size_20" />
  24.     <!--添加图片和使用阴影-->
  25.     <!--添加图片:drawableTop、drawableBottom、drawableLeft(drawableStart)、drawableRight(drawableEnd)-->
  26.     <!--使用阴影:shadowColor(阴影颜色)、shadowDx(tv_2位置为基准,数字越大越往右)、
  27.     shadowDy(tv_2位置为基准,数字越大越往下)、shadowRadius(数字越大越模糊)-->
  28.     <!--图片 @mipmap/ic_launcher 位置:app/mipmap/任意一个目录能找到即可-->
  29.     <TextView
  30.         android:layout_width="match_parent"
  31.         android:layout_height="wrap_content"
  32.         android:drawableLeft="@mipmap/ic_launcher"
  33.         android:layout_marginTop="@dimen/dimen_10"
  34.         android:gravity="center_vertical"
  35.         android:shadowColor="@color/color_FF773D"
  36.         android:shadowDx="30"
  37.         android:shadowDy="-20"
  38.         android:shadowRadius="2"
  39.         android:text="右侧添加图片和使用阴影"
  40.         android:textColor="@color/color_188FFF"
  41.         android:textSize="@dimen/text_size_20" />
  42.     <!--对电话和邮件增加链接-->
  43.     <!--autoLink对文本内容自动添加E-mail地址、电话号码添加超级链接-->
  44.     <TextView
  45.         android:layout_width="match_parent"
  46.         android:layout_height="wrap_content"
  47.         android:autoLink="email|phone"
  48.         android:gravity="center_vertical"
  49.         android:layout_marginTop="@dimen/dimen_10"
  50.         android:text="可点击跳转邮件:SCC5201314@qq.com\n可点击跳转电话:0215201314"
  51.         android:textColor="@color/color_188FFF"
  52.         android:textSize="@dimen/text_size_14" />
  53.     <!--内容过多-->
  54.     <!--maxLength最多显示几行,单行也可用android:singleline="true"-->
  55.     <!--ellipsize,内容显示不下时,显示...(位置最前、中间、最后都可以),这里要加行数限制才行-->
  56.     <!--lineSpacingMultiplier,行距-->
  57.     <TextView
  58.         android:layout_width="match_parent"
  59.         android:layout_height="wrap_content"
  60.         android:ellipsize="end"
  61.         android:gravity="center_vertical"
  62.         android:lineSpacingMultiplier="1.2"
  63.         android:layout_marginTop="@dimen/dimen_10"
  64.         android:maxLength="2"
  65.         android:text="TxtView继承了View,它还是Button、EditText两个UI组件类的父类。它的作用是在用户界面上显示文本素。从功能上来看TextView就是个文本编辑器,只不过Android关闭的它的可编辑功能。如果需要一个可编辑的文本框,就要使用到它的子类Editext了,Editext允许用户编辑文本框中的内容。TextView和Editext它俩最大的区别就在于TextView不允许用户编辑文本内容,Editext允许用户编辑文本内容。
  66. 下面咱写几个实例来详细了解一下TextView的。"
  67.         android:textColor="@color/color_188FFF"
  68.         android:textSize="@dimen/text_size_14" />
  69.     <!--background设置背景色-->
  70.     <!--padding内边距(边到可用范围的距离)-->
  71.     <TextView
  72.         android:layout_width="wrap_content"
  73.         android:layout_height="wrap_content"
  74.         android:background="@color/color_ff0000"
  75.         android:layout_marginTop="@dimen/dimen_10"
  76.         android:padding="10dp"
  77.         android:text="背景色红色的文本"
  78.         android:textColor="@color/white" />
  79.     <!--带边框的文本-->
  80.     <!--layout_margin外边距(TextView到其他控件的距离)-->
  81.     <TextView
  82.         android:layout_width="wrap_content"
  83.         android:layout_height="wrap_content"
  84.         android:layout_marginTop="@dimen/dimen_10"
  85.         android:background="@drawable/bg_tv_frame_red"
  86.         android:padding="10dp"
  87.         android:text="带着红色边框的文本" />
  88.     <!--带边框的文本背景色渐变-->
  89.     <!--代码可实现文本的渐变-->
  90.     <TextView
  91.         android:layout_width="wrap_content"
  92.         android:layout_height="wrap_content"
  93.         android:layout_marginTop="@dimen/dimen_10"
  94.         android:background="@drawable/bg_tv_frame_gradient"
  95.         android:padding="10dp"
  96.         android:textColor="@color/white"
  97.         android:text="带着边框和背景色渐变的文本" />
  98.     
  99. </LinearLayout>
  100. 复制代码

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

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  3.     <!--radius四个圆角统一设置,也可以单独对某一个圆角设置。例:topLeftRadius-->
  4.     <corners android:radius="2dp"/>
  5.     <!--边框宽度width、颜色color-->
  6.     <stroke android:width="4px" android:color="@color/color_ff0000" />
  7. </shape>
  8. 复制代码

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

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  3.     <!--radius四个圆角统一设置,也可以单独对某一个圆角设置。例:topLeftRadius-->
  4.     <corners android:radius="8dp"/>
  5.     <!--边框宽度width、颜色color-->
  6.     <stroke android:width="1dp" android:color="@color/color_ff0000" />
  7.     <!--渐变的颜色设置开始到结束-->
  8.     <gradient
  9.         android:startColor="@color/color_188FFF"
  10.         android:centerColor="@color/color_FF773D"
  11.         android:endColor="@color/color_ff0000"
  12.         android:type="linear"
  13.         />
  14. </shape>
  15. 复制代码

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

  • 布局文件
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:layout_margin="@dimen/dimen_20"
  6.    android:orientation="vertical">
  7.    <TextView
  8.        android:layout_width="match_parent"
  9.        android:layout_height="wrap_content"
  10.        android:text="下面是用代码实现效果"
  11.        android:textSize="@dimen/text_size_18"
  12.        android:layout_marginTop="@dimen/dimen_20"
  13.        android:layout_marginBottom="@dimen/dimen_10"
  14.        android:textColor="@color/black"
  15.        android:textStyle="bold" />
  16.    <TextView
  17.        android:id="@+id/tv_flag"
  18.        android:layout_width="match_parent"
  19.        android:layout_height="wrap_content"
  20.        android:textColor="@color/color_188FFF"
  21.        android:layout_marginTop="@dimen/dimen_10"
  22.        android:text="给文本加划线"
  23.        android:textSize="@dimen/text_size_18" />
  24.    <TextView
  25.        android:id="@+id/tv_gradient"
  26.        android:layout_width="match_parent"
  27.        android:layout_height="wrap_content"
  28.        android:layout_marginTop="@dimen/dimen_10"
  29.        android:textColor="@color/white"
  30.        android:text="文字渐变是不是很神奇"
  31.        android:textSize="@dimen/text_size_18" />
  32.    <TextView
  33.        android:id="@+id/tv_bg"
  34.        android:layout_width="wrap_content"
  35.        android:layout_height="wrap_content"
  36.        android:layout_marginTop="@dimen/dimen_10"
  37.        android:padding="10dp"
  38.        android:text="设置背景色"
  39.        android:textColor="@color/white"
  40.        android:textSize="@dimen/text_size_18" />
  41.    <TextView
  42.        android:id="@+id/tv_size"
  43.        android:layout_width="match_parent"
  44.        android:layout_height="wrap_content"
  45.        android:layout_marginTop="@dimen/dimen_10"
  46.        android:textColor="@color/color_ff0000"
  47.        android:text="文字特别大小不一致" />
  48.    <TextView
  49.        android:id="@+id/tv_onclick"
  50.        android:layout_width="match_parent"
  51.        android:layout_marginTop="@dimen/dimen_10"
  52.        android:layout_height="wrap_content"
  53.        android:textSize="@dimen/dimen_20"
  54.        android:text="可点击可长按" />
  55. </LinearLayout>
  56. 复制代码
  • 运行结果

  • 在代码中实现
  1.         //下划线并加清晰
  2.         tv_flag.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG | Paint.ANTI_ALIAS_FLAG);
  3.         tv_flag.getPaint().setAntiAlias(true);//抗锯齿
  4.         int[] colors = {0xff188fff0xffff773D0xffff0000};//颜色的数组
  5.         LinearGradient mLinearGradient = new LinearGradient(000
  6.                 tv_gradient.getPaint().getTextSize(), colors, null, Shader.TileMode.CLAMP);
  7.         tv_gradient.getPaint().setShader(mLinearGradient);
  8.         tv_gradient.invalidate();
  9.         int fillColor = Color.parseColor("#ff0000");//内部填充颜色
  10.         GradientDrawable gd = new GradientDrawable();//创建drawable
  11.         gd.setColor(fillColor);//设置背景色
  12.         gd.setCornerRadius(10);//设置圆角
  13.         tv_bg.setBackground(gd);//设置背景
  14.         Spannable wordtoSpan = new SpannableString(tv_size.getText().toString());
  15.         //setSpan:参数1,设置文字大小;参数2,开始的文字位置;参数3,结束改变文字位置不包含这个位置
  16.         wordtoSpan.setSpan(new AbsoluteSizeSpan(DensityUtil.dip2px(this18)), 02, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
  17.         wordtoSpan.setSpan(new AbsoluteSizeSpan(DensityUtil.dip2px(this24)), 25, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
  18.         wordtoSpan.setSpan(new AbsoluteSizeSpan(DensityUtil.dip2px(this10)), 5, tv_size.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
  19.         tv_size.setText(wordtoSpan);
  20.         //TextView其实也是有点击事件的毕竟它的爸爸Veiew
  21.         tv_onclick.setOnClickListener(new View.OnClickListener() {
  22.             @Override
  23.             public void onClick(View v) {
  24.                 MLog.e("这里是点击事件");
  25.                 Toast.makeText(TextViewActivity.this,"这里是点击事件",Toast.LENGTH_SHORT).show();
  26.             }
  27.         });
  28.         tv_onclick.setOnLongClickListener(new View.OnLongClickListener() {
  29.             @Override
  30.             public boolean onLongClick(View v) {
  31.                 MLog.e("这里长按事件");
  32.                 Toast.makeText(TextViewActivity.this,"这里长按事件",Toast.LENGTH_SHORT).show();
  33.                 //true表示事件已消费
  34.                 return true;
  35.             }
  36.         });
  37. 复制代码
  • 运行结果分析

    • TextView的属性在xml中可以使用的大部分在代码中也是可以实现的,看个人喜好怎么去使用。
    • 因TextView继承View,所以可以使用View的方法。如View.OnClickListener()和View.OnLongClickListener()还有去慢慢探索吧。

3.在代码中创建并设置属性

  • 先看效果图:

  • 下面是实现所用的代码:
  1.   //ll_act_tv布局文件根布局id
  2.   LinearLayout ll_act_tv = findViewById(R.id.ll_act_tv);
  3.   TextView textView = new TextView(this);//创建控件
  4.   textView.setText("蠢代码写的哦");//设置控件内容
  5.   textView.setTextColor(Color.RED);//设置控件颜色
  6.   textView.setTextSize(DensityUtil.dip2px(this20));//设置控件字体大小
  7.   ll_act_tv.addView(textView);
  8. 复制代码

TextView今天就聊到这里,后面还有它的子类,比较子类也是比较厉害的不可能一文搞定。你学会了吗?嘿嘿嘿


 

原文链接:https://blog.csdn.net/jianaikkk/article/details/118995194



所属网站分类: 程序员的那点事

作者:雨还没有下

链接:http://www.pythonpdf.com/blog/article/269/4d1c2dcf79ed135aebe2/

来源:编程知识网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

13 0
收藏该文
已收藏

评论内容:(最多支持255个字符)