界面组件——文本框(TextView)和编辑框(EditText)

      • 介绍
      • 用例1基本属性设置
      • 用例2给文本框添加边框或图片
      • 用例3添加默认提示和焦点切换功能对于电话号码框时输入法自动切换到数字键盘

介绍

TextView直接继承了View,它还是EditTextButton两个UI组件类的父类。

TextViewEditView均能在界面上显示文本,只是后者还能提供对此显示文本的编辑功能


用例1:基本属性设置


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="一代人"
        android:textSize="20pt"/>

    
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:text="黑夜给了我黑色的眼睛,我却用它寻找光明。"
        android:ellipsize="middle"/>

    
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:text="个人邮箱[email protected],欢迎来信。"
        android:autoLink="email"/>

    
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="诗歌爱好者"
        android:shadowColor="#0000ff"
        android:shadowDx="15.0"
        android:shadowDy="20.0"
        android:textColor="#ff0000"
        android:textSize="25pt"/>

    
    <TextView
        android:id="@+id/password"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Hello World"
        android:password="true"/>

LinearLayout>

相应地界面展示结果:
界面组件——文本框(TextView)和编辑框(EditText)_第1张图片


用例2给文本框添加边框或图片

使用shape在drawable目录下创建一个背景文件


<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#ffffff" />
    <stroke android:width="1dp" android:color="#ff0000" />
shape>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    
    <TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/bg_border"
        android:text="带边框的文本"
        android:textSize="25dp"/>

    
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="带图片的文本"
        android:drawableLeft="@drawable/leaf"/>

LinearLayout>

相应地界面展示结果:

界面组件——文本框(TextView)和编辑框(EditText)_第2张图片


用例3添加默认提示和焦点切换功能,对于电话号码框时输入法自动切换到数字键盘


<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">

    <TableRow>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="用户名: "
            android:textSize="10pt"
            android:background="@drawable/bg_border"/>

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="请填写登录账号"
            android:selectAllOnFocus="true"/>
    TableRow>

    <TableRow>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="密码: "
            android:textSize="10pt"
            android:background="@drawable/bg_border"/>

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:password="true"/>
    TableRow>

    <TableRow>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="电话号码"
            android:background="@drawable/bg_border"/>

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="请填写您的电话号码"
            android:selectAllOnFocus="true"
            android:phoneNumber="true"/>
    TableRow>

    <TableRow>
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="注册"/>
    TableRow>
TableLayout>

相应地界面展示结果:

界面组件——文本框(TextView)和编辑框(EditText)_第3张图片


摘自《疯狂Android讲义》

你可能感兴趣的:(Android)