当前位置: 首页 > news >正文

Android系统中设置TextView的行间距

Android系统中TextView默认显示中文时会比较紧凑,不是很美观。
为了让每行保持一定的行间距,可以设置属性android:lineSpacingExtraandroid:lineSpacingMultiplier

1、设置行间距:android:lineSpacingExtra,取值范围:正数、负数和0,正数表示增加相应的大小,负数表示减少相应的大小,0表示无变化。

2、设置行间距的倍数:android:lineSpacingMultiplier,取值范围:浮点数,如果值大于1.0表示增加行间距,如果值小于1.0表示减少行间距,等于1.0时表示无变化。

3、代码中设置行间距和倍数:TextView.setLineSpacing(float add, float mult)。
参数add表示要增加的行间距数值,对应android:lineSpacingExtra属性;参数mult表示行间距倍数,对应android:lineSpacingMultiplier属性。

示例

<?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:background="@android:color/black"android:gravity="center"android:orientation="vertical"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:ellipsize="end"android:maxLines="3"android:text="海底火山的喷发会产生大量的有毒气体,这些有毒气体会与水发生化学反应,产生酸性物质,而酸性物质反而会促进火焰的蔓延"android:textColor="@android:color/white" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:ellipsize="end"android:lineSpacingMultiplier="0.5"android:maxLines="3"android:text="海底火山的喷发会产生大量的有毒气体,这些有毒气体会与水发生化学反应,产生酸性物质,而酸性物质反而会促进火焰的蔓延"android:textColor="@android:color/holo_green_dark" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:ellipsize="end"android:lineSpacingMultiplier="1.5"android:maxLines="3"android:text="海底火山的喷发会产生大量的有毒气体,这些有毒气体会与水发生化学反应,产生酸性物质,而酸性物质反而会促进火焰的蔓延"android:textColor="@android:color/holo_red_dark" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:ellipsize="end"android:maxLines="3"android:text="海底火山的喷发会产生大量的有毒气体,这些有毒气体会与水发生化学反应,产生酸性物质,而酸性物质反而会促进火焰的蔓延"android:textColor="@android:color/white" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:ellipsize="end"android:lineSpacingExtra="-10dp"android:maxLines="3"android:text="海底火山的喷发会产生大量的有毒气体,这些有毒气体会与水发生化学反应,产生酸性物质,而酸性物质反而会促进火焰的蔓延"android:textColor="@android:color/holo_green_dark" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:ellipsize="end"android:lineSpacingExtra="10dp"android:maxLines="3"android:text="海底火山的喷发会产生大量的有毒气体,这些有毒气体会与水发生化学反应,产生酸性物质,而酸性物质反而会促进火焰的蔓延"android:textColor="@android:color/holo_red_dark" /></LinearLayout>

效果:

在这里插入图片描述

http://www.lryc.cn/news/224068.html

相关文章:

  • 嵌入式养成计划-47----QT--基于QT的OpenCV库实现人脸识别功能
  • MySQL(12):MySQL数据类型
  • 哪款手机便签软件支持存储录音文件并支持转文字?
  • Health Kit申请验证有问题?解决方案全解析
  • 2007-2022年上市公司工业机器人渗透度数据
  • k8s基础环境部署
  • 家用工作站方案:ThinkBook 14 2023 版
  • 电脑篇——本地串口转TCP,TCP转虚拟串口,网络调试助手,串口调试助手
  • igbt好坏判断方法有哪些?万用表怎么测试igbt的好坏?
  • Android UI 开发·界面布局开发·案例分析
  • 2023-11-06 monetdb-事务-insert-delta缓存-分析
  • ubuntu 22.04 flameshot 截图异常的问题
  • 正点原子嵌入式linux驱动开发——Linux WIFI驱动
  • React中的“状态”(state)和“属性”(props)的区别
  • 棋牌室电脑计时灯控,棋牌室计时灯控安装,佳易王计时计费管理系统软件
  • P02项目诊断报警组件(学习操作日志记录、单元测试开发)
  • 【ARM Trace32(劳特巴赫) 使用介绍 2 - Veloce 环境中使用trace32 连接 Cortex-M33】
  • 服务器硬件有哪些组成
  • 【Git】Git基础命令操作速记
  • 使用CDN有什么好处?
  • 11.7加减计数器,可置位~,数字钟分秒,串转并,串累加转并,24位串并128,流水乘法器,一些乘法器
  • 【模型推理优化学习笔记】CUDA加速矩阵乘计算
  • 第三届 “鹏城杯”(初赛)
  • React Hooks为什么要在顶层使用?
  • Vscode Vim自动切换
  • C语言初学1:详解#include <stdio.h>
  • 5 Tensorflow图像识别(下)模型构建
  • OpenCV 图像复制和图像区域读写
  • 【分布式事务】初步探索分布式事务的概率和理论,初识分布式事的解决方案 Seata,TC 服务的部署以及微服务集成 Seata
  • es6过滤对象里面指定的不要的值filter过滤