安卓常用控件---标签

这篇博客详细介绍了在安卓开发中如何使用标签控件,包括常用属性、创建应用的步骤、字符串资源文件的设置、布局资源文件的编写、自定义边框配置以及在MainActivity中的实现和最终预览效果。
摘要由CSDN通过智能技术生成

(一)标签常用属性

属性 作用
text 标签文本内容(@string/username)
textColor 标签文本颜色(#ff00ff、@color/red)
textSize 标签文本字号(单位用sp)
textStyle 标签文本样式(normal
autoLink 自动链接(none、web、email、phone、map)
background 背景(背景色、背景图片、背景图形)
textAllCaps 字母全大写
drawableTop 图片在上
drawableBottom 图片在下
drawableLeft 图片在左
drawableRight 图片在右

(二)案例演示:

1、创建安卓应用

基于Empty Activity模板-创建安卓应用TextViewDemo
在这里插入图片描述单击【finish】按钮
在这里插入图片描述

2、字符串资源文件

字符串资源文件strings.xml
在这里插入图片描述查看完整代码

<resources>
    <string name="app_name">标签演示</string>
    <string name="normal">常规:Welcome to Android World</string>
    <string name="bold">粗体:Welcome to Android World</string>
    <string name="italic">斜体:Welcome to Android World</string>
    <string name="bold_italic">粗斜:Welcome to Android World</string>
    <string name="all_caps">全大写:Welcome to Android World</string>
    <string name="theorem">勾股定理:</string>
    <string name="equation">化学方程式:</string>
    <string name="android">安卓</string>
</resources>

3、布局资源文件

布局资源文件activity_main.xml
在这里插入图片描述
查看完整代码

<?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="#000000"
    android:orientation="vertical"
    android:padding="10dp">

    <TextView
        android:id="@+id/tv_normal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/normal"
        android:textColor="@android:color/holo_blue_bright"
        android:textSize="15sp"
        android:textStyle="normal" />

    <TextView
        android:id="@+id/tv_bold"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text=
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值