安卓常用控件---标签
(一)标签常用属性
属性 | 作用 |
---|---|
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=