我正试图在下面的代码和屏幕截图中垂直居中TextViews
中的4 LinearLayout
。我知道如何在TextViews
中垂直居中LinearLayout
其中一个,但我希望所有4个垂直居中,因此相同的距离在顶部和底部TextViews
的上方和下方。< / p>
XML
<RelativeLayout >
<TextView />
<LinearLayout >
<TextView/>
<TextView />
<TextView />
<TextView />
<TextView />
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:2)
尝试将此属性添加到所有textviews
:
android:layout_weight="1"
并使用
设置Linearlayout
android:layout_height="fill_parent"