Android控件介绍
1.TextView
- id:根据id,我们可以在Java代码中通过findViewById()的方法获取到该对象,然后进行相关属性的设置,
- layout_width:组件的宽度,一般写:**wrap_content**或者**match_parent(fill_parent)**
- layout_height:组件的高度,内容同上。
- gravity:设置控件中内容的对齐方向
- text:设置显示的文本内容,一般我们是把字符串写到string.xml文件中,然后通过@String/xxx取得对应的字符串内容的,
- textColor:设置字体颜色,同上,通过colors.xml资源来引用,别直接这样写!
- textStyle:设置字体风格,三个可选值:**normal**(无效果),**bold**(加粗),**italic**(斜体)
- textSize:字体大小,单位一般是用sp!
- background:控件的背景颜色,可以理解为填充整个控件的颜色,可以是图片哦!
示例代码:
<RelativeLayout 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"
tools:context=".MainActivity"
android:gravity="center"
android:background="#8fffad">
<TextView
android:id="@+id/txt"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="显示文本"
android:textColor="#000000"
android:textStyle="bold"
android:background="#ffffff"
android:textSize="18sp" />
</RelativeLayout>