这算是Android页面中最简单的一个控件了吧,它主要的作用就是在页面上显示一段文本信息,就让我们简单的看下下面这个例子吧
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is Text View!"
android:textSize="30dp"
android:textColor="#00ff00"
android:gravity="center"
android:layout_gravity="bottom"
/>
</LinearLayout>
? ? android:layout_width-->组件的宽度 ? ? android:layout_height-->组件的高度 ? ? android:text-->组件中的文本内容 ? ? android:textSize-->文本的字体大小 ? ? android:textColor--->文本的字体颜色 ? ? android:gravity? -->组件中文本的对齐方式 ? ? android:layout_gravity? --->组件在容器中的对齐方式
注意: android:layout_width与android:layout_height的属性值有wrap_content和match_parent ? ? ? ? ? ??match_parent:表示控件的大小与父布局的大小一样 ? ? ? ? ? ? wrap_content:表示让当前控件的大小能够刚好包含住里面的内容 |
注意:android:layout_gravity与android:gravity的可选属性值有top、bottom、left、right、center等,可以用“|”来同时指定多个值,例如我们指定的center,他的效果相当于center_vertical|center_horizontal |
当然,textview还有其他很多属性,我这里就不一一赘述了,感兴趣的可以自己查一下哦
|