您需要使用正确的子类。例如,如果您的 TextView 在 FrameLayout 中,您需要:
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) textView.getLayoutParams();
params.gravity = Gravity.CENTER;
textView.setLayoutParams(params);
请注意,layout_gravity 或 setLayoutGravity 在其父元素中设置当前元素的重力,gravity 或 setGravity 为元素内的当前元素内容设置重力。详情请参阅下图。
示例 1:
<FrameLayout
android:layout_width="400dp"
android:layout_height="400dp">
<TextView
android:layout_width="200dp"
android:layout_height="200dp"
android:text="Some Text" />
</FrameLayout>
---------------------------------------------
|Some Text |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
---------------------------------------------
示例 2:
<FrameLayout
android:layout_width="400dp"
android:layout_height="400dp">
<TextView
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_gravity="center"
android:text="Some Text" />
</FrameLayout>
---------------------------------------------
| |
| |
| |
| |
| |
| Some Text |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
---------------------------------------------
示例 3:
<FrameLayout
android:layout_width="400dp"
android:layout_height="400dp">
<TextView
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_gravity="center"
android:gravity="center"
android:text="Some Text" />
</FrameLayout>
---------------------------------------------
| |
| |
| |
| |
| |
| |
| |
| |
| Some Text |
| |
| |
| |
| |
| |
| |
| |
| |
---------------------------------------------
示例 4:
<FrameLayout
android:layout_width="400dp"
android:layout_height="400dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Some Text" />
</FrameLayout>
---------------------------------------------
| |
| |
| |
| |
| |
| |
| |
| |
| Some Text |
| |
| |
| |
| |
| |
| |
| |
| |
---------------------------------------------
示例 5:
<FrameLayout
android:layout_width="400dp"
android:layout_height="400dp">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="Some Text" />
</FrameLayout>
---------------------------------------------
| |
| |
| |
| |
| |
| |
| |
| |
| Some Text |
| |
| |
| |
| |
| |
| |
| |
| |
---------------------------------------------