IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android Studio学习日记之(一)TextView控件 -> 正文阅读

[移动开发]Android Studio学习日记之(一)TextView控件

Android Studio学习日记之(一)TextView控件

1.基础的TextView控件知识

TextView - - - - 点击可查阅API文档的官方解释

XML attributesAPI文档解释中文释义
android: layout_width-组件的宽度
android: layout_height-组件的高度
android:id-为组件设置的id
android:text-显示的文本内容
android:textColor-文本颜色
android:textStyle-文本风格,有3个可选值:normal(无效果), bold(加粗),italic(斜体)
android:textSize-文本尺寸
android:background-控件的背景色,或者图片也可
android:gravity-控件内容的对齐方向

代码实现:

strings.xml

<resources>
    <string name="app_name">MyASDemo</string>
    <string name="text01">你好啊</string>
</resources>

colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="purple_100">#CCCCFF</color>
    <color name="LemonChiffon">#FFFACD</color>
</resources>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <!--基础的textView内容-->
    <TextView
        android:id="@+id/text01"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/text01"
        android:textColor="@color/purple_100"
        android:textSize="60sp"
        android:background="@color/LemonChiffon"
        android:gravity="center_horizontal"
        />

</LinearLayout>

【注意】:
我们也可以根据TextView的id值,在MainActivity.java文件上添加文字,而且它会覆盖掉在activity_main.xml的原本文本值。

MainActivity.java

package com.example.myasdemo;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //获取activity_main.xml文件中id值为text01的组件
        TextView text1 = findViewById(R.id.text01);
        //设置text01的文本值,此处会覆盖掉activity_main.xml的文本值
        text1.setText("你好啊");
    }
}

运行效果:
在这里插入图片描述

2.文字的阴影效果

XML attributes中文释义
android:shadowColor设置阴影颜色,需要和shadowRadius一起使用
android:shadowRadius设置阴影的模糊程度
android:shadowDx设置阴影在水平方向的偏移
android:shadowDy设置阴影在竖直方向的偏移

代码实现:

strings.xml

<resources>
    <string name="app_name">MyASDemo</string>
   <string name="text02">HELLO</string>
</resources>

colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
       <color name="OliveDrab1">#C0FF3E</color>
    <color name="LightCyan">#E0FFFF</color>
</resources>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android">

     <!--关于阴影的特效:shadowColor、shadowRadius、shadowDx、shadowDy-->
    <TextView
        android:id="@+id/text02"
        android:layout_width="match_parent"
        android:layout_height="80dp"
        android:text="@string/text02"
        android:textSize="60sp"
        android:textStyle="italic"
        android:gravity="center"
        android:background="@color/LightCyan"
        android:shadowColor="@color/OliveDrab1"
        android:shadowRadius="10.0"
        android:shadowDx="20.0"
        android:shadowDy="20.0"
        />

</LinearLayout>

运行效果:
在这里插入图片描述

3.文字的跑马灯效果

XML attributes中文释义
android:singleLine内容单行显示
android:focusable是否可以获取焦点
android:focusableInTouchMode制视图在触摸模式下是否可以聚焦
android:ellipsize省略文本的位置(当文本很长时,用…代替)
android:marqueeRepeatLimit字幕动画的重复次数

代码实现:
strings.xml

<resources>
    <string name="app_name">MyASDemo</string>
      <string name="text03">bonjour bonjour bonjour bonjour bonjour bonjour bonjour</string>
</resources>

colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="SeaGreen">#2E8B57</color>
    <color name="LemonChiffon">#FFFACD</color>
</resources>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <!--关于跑马灯的应用-->
    <!--  android:clickable="true"是确定滑动的关键-->
    <TextView
        android:id="@+id/text03"
        android:layout_width="match_parent"
        android:layout_height="180sp"
        android:text="@string/text03"
        android:textSize="60sp"
        android:textStyle="bold"
        android:textColor="@color/SeaGreen"
        android:background="@color/LavenderBlush"
        android:gravity="center"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:marqueeRepeatLimit="marquee_forever"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:clickable="true"
        />

</LinearLayout>

这里我们有3个实现跑马灯的关键方法:

  • 方法1:在TextView控件里面加入 android:clickable=“true”
  • 方法2:在java文件下新建一个.java文件,同时将< TextView />更改成该文件的名字

e.g.

myTextView.java

package com.example.myasdemo;

import android.content.Context;
import android.util.AttributeSet;


import androidx.annotation.Nullable;

public class myTextView extends androidx.appcompat.widget.AppCompatTextView {
	//创建构造方法
    public myTextView(Context context) {
        super(context);
    }

    public myTextView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public myTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

	//该方法是关键!!!
    @Override
    public boolean isFocused() {
        return true;
    }
}

在activity_main.xml的对应处进行修改
在这里插入图片描述

  • 方法3:在TextView控件后面直接加上 < requestFocus />
    在这里插入图片描述

运行效果:
(文字滑动效果)
在这里插入图片描述

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-03-08 22:39:08  更:2022-03-08 22:42:06 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 16:25:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码