我有一个布局,需要将其中一个视图放在中心。这很简单。问题是我还有一些其他视图需要定位到屏幕顶部。
问题:如果有足够的空间看起来还可以,但是当屏幕太小时,顶部和中心元素会重叠。
问题:如果屏幕太小,如何将“居中”元素向下推?
原来的布局很复杂,我准备了一个例子:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/theOneAtTheTop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some long text which may overlap the lower view. Some long text which may overlap the lower view."
android:layout_alignParentTop="true"
/>
<TextView
android:id="@+id/theOneInTheMiddlep"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some long text which may overlap the upper view. Some long text which may overlap the upper view. "
android:layout_centerInParent="true"
/>
</RelativeLayout>
这是一个小模拟。中间的图片显示了它在小屏幕上的外观,侧面的图片显示了所需的情况。