基础属性一栏 :
1 :id :就相当于一个名字
格式 :
android:id="@+id/name"
name可自行起名
TextView tv=findViewById(R.id.name);
tv.setText("安卓开发");
创建id可在activity中创建文本对象,使用文本方法进行传值。
通过此方法传入的值将会覆盖原textview的文本传入的值
2 : 设置一个文本内容
3: textcolor : 调整文本颜色
4 : backgroud :调整组件的背景,可以是颜色,也可以插图片
5: grivaty :设置组件的对齐方向
代码展示 :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="安卓开发"
android:textSize="26sp"
android:textStyle="italic"
android:textColor="@color/black"
android:gravity="center"
></TextView>
</LinearLayout>
</LinearLayout>