对于RelativeLaout
:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<TextView
android:id="@+id/a_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:text="Sam"
android:textColor="@color/black"
android:textSize="30sp" />
<TextView
android:id="@+id/b_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:text="Kate"
android:textColor="@color/black"
android:textSize="30sp"
android:layout_toEndOf="@id/a_textView"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show"
android:textSize="30sp"
android:layout_toEndOf="@id/b_textView"/>
</RelativeLayout>
结果:未完全居中
对于LinearLayout
:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center"> //<- here, child Views are the same
结果:完美居中
问题:为什么这样以及如何通过仅修改属性RelativeLayout
来实现相同的结果?LinearLayout
RelativeLayout