暂时试图这样做,没有任何效果。
我正在尝试将相对布局内的线性布局垂直和水平居中。
重点是让两个文本视图在相对布局中完美居中。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<LinearLayout
android:layout_width="350dp"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test"
android:textColor="#ff0fff"
android:background="#ffffff"
android:textSize="20dp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test"
android:textColor="#ff0fff"
android:background="#ffffff"
android:textSize="20dp"
/>
</LinearLayout>
</RelativeLayout>
感谢任何帮助。
答案 0 :(得分:5)
将属性centerInParent
设置为 true ,使相对布局中的线性布局居中,将gravity
设置为中心 LinearLayout
<中的TextView / p>
<LinearLayout
android:layout_width="350dp"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_centerInParent="true"
android:gravity="center">