Android Studio 文本控件TextView

简介: 本文目录1. 功能2. 简单实例3. 文本显示在同一行

1. 功能

用于在界面上显示文本信息。

2. 简单实例

显示简单的几个文本内容。

<?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:orientation="vertical"
    android:padding="4dp">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:text="你好"
        android:textColor="#000000"
        android:textSize="24sp"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:text="你是谁"
        android:textColor="#6AC522"
        android:textSize="24sp"/>
</LinearLayout>

image.png

3. 文本显示在同一行

正常情况下,当文本很多时,会自动换行。为了节省空间,可以设置文本显示在同一行,当超过屏幕宽度时滚动显示。代码:

<?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:orientation="vertical"
    android:padding="4dp">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:text="你好1234567890123456789012345678901234567890"
        android:textColor="#000000"
        android:textSize="24sp"
        android:singleLine="true" 
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"/>
</LinearLayout>

image.png


相关文章
|
1天前
|
存储 Linux 开发工具
Linux手动升级替换Android Studio
【6月更文挑战第22天】
|
1天前
|
Android开发
Android Studio(2022.3.1)设置阿里云源-新旧版本
Android Studio(2022.3.1)设置阿里云源-新旧版本
8 1
|
5天前
|
XML Java 开发工具
Android Studio开发Android TV
【6月更文挑战第19天】
|
7天前
|
Android开发
Android studio 出现Plugin [id: ‘com.android.application‘, version: ‘8.1.0‘, apply: false] 问题解决办法
Android studio 出现Plugin [id: ‘com.android.application‘, version: ‘8.1.0‘, apply: false] 问题解决办法
74 1
|
4天前
|
Android开发
如何 将Android Studio升级至最新版(4.0)
如何 将Android Studio升级至最新版(4.0)
8 0
|
4天前
|
Java 开发工具 Android开发
Android Studio 导出JavaDoc文档
Android Studio 导出JavaDoc文档
9 0
|
7天前
|
开发工具 Android开发
Android studio历史版本下载
Android studio历史版本下载
26 0
|
7天前
|
编解码 Android开发
Android 解决TextView多行滑动与NestedScrollView嵌套滑动冲突的问题
Android 解决TextView多行滑动与NestedScrollView嵌套滑动冲突的问题
11 0
|
7天前
|
Android开发
Android 自定义View 测量控件宽高、自定义viewgroup测量
Android 自定义View 测量控件宽高、自定义viewgroup测量
9 0
|
7天前
|
Android开发
android studio找不到aar问题解决
android studio找不到aar问题解决
10 0