1 <TextView
2 android:text="这是一个TextView"
3 android:layout_width="200dp"
4 android:layout_height="200dp"
5 android:gravity="center"
6 android:background="#ff0"
7 />
1 <LinearLayout
2 android:layout_width="match_parent"
3 android:layout_height="match_parent"
4 android:gravity="center"
5 android:background="#f00"
6 >
7 < 8 android:text="TextView在这里"
9 android:layout_width="200dp"
10 android:layout_height="200dp"
11 android:background="#ff0"
12 />
13 </LinearLayout>
1 < 4 android:background="#f00"
5 android:orientation="horizontal">
6 < 7 android:text="TextView在这里"
8 android:layout_width="200dp"
9 android:layout_height="200dp"
10 android:background="#ff0"
11 android:layout_gravity="center"
13 </LinearLayout>
1 <FrameLayout
2 android:layout_width="match_parent"
3 android:layout_height 4 android:background="#f00">
5 6 android:text="TextView在这里"
7 android:layout_width="200dp"
8 android:layout_height 9 android:background="#ff0"
10 android:layout_gravity="center"
11 />
12 </FrameLayout>