Android控件---TextView(文本框)

TextView(文本框)

主要用于在界面上显示一段文本信息。

如:
Android控件---TextView(文本框)_第1张图片

步骤:

新建一个项目,打开res文件夹下layout文件夹中的activity_main.xml,修改其内容:

注:切换到code模式的按键在右上角

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

    <TextView
        android:id="@+id/tv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="hello Android!!"
        android:gravity="center"
        android:textSize="30dp"
        android:textColor="#0000FF"
        android:textStyle="bold"
        />

</LinearLayout>

常用属性

id

定义一个唯一的标识符

android:id="@+id/tv"   //

layout_widthlayout_height

定义组件的宽度和高度,有两种wrap_content或者match_parent,前者是控件显示的内容多大,控件就多大,而后者会填满该控件所在的父容器;除此之外还可以设定确定的值。

示例(只调整了layout_width,height为wrap_content):

wrap_content

match_parent

特定值(200dp)
Android控件---TextView(文本框)_第2张图片

text

设置显示的文本内容

android:text="hello Android!!"

gravity

设置控件中内容的对齐方向

可选值top(顶)、bottom(低)、 left(左)、 right (右)、 center(居中)、center_horizontal(垂直居中)、center_vertical(水平居中)

android:gravity="center_horizontal"

textSize

字体大小,单位一般是用sp

android:textSize="30dp"

textColor

设置字体颜色,#打头,16进制(黑色:#000000;白色:#FFFFFF;红色:#FF0000;绿色:#008000;蓝色:#0000FF),可以通过在线取色器找自己想要的颜色。

android:textColor="#003399"

textStyle

设置文本样式,有三种bold(加粗)、italic(斜体)、normal(无效果)

android:textStyle="bold"

你可能感兴趣的:(Android,android,javascript,开发语言)