我有一个具有三个子布局的 RelativeLayout。顶部布局中的客户信息(对齐父顶部),中心布局中的三个按钮和底部布局中的横幅(对齐父底部)。
我从下往上填充,以使底部横幅与底部正确对齐。
问题是让中心布局正确显示。我的顶部布局迫使中心布局向下,如果我禁用 1 或 2 个中心按钮(消失),我需要它们漂浮到布局的顶部。我可以得到我需要正确显示的变化,但不是所有的东西都放置正确。
任何帮助,将不胜感激。谢谢
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/adLayout"
android:background="@drawable/ad_contact_background"
android:layout_height="fill_parent"
android:layout_width="match_parent"
android:orientation="horizontal" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayoutAd"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_alignParentBottom="true" >
<ImageView
android:id="@+android:id/ad_contactAdImageView"
android:layout_height="wrap_content"
android:layout_width="match_parent" />
</LinearLayout>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayoutContact"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_above="@+id/linearLayoutAd" >
<Button
android:id="@+id/ad_contactWebsiteButton"
android:background="@drawable/button_black"
android:layout_height="50dp"
android:layout_width="match_parent"
android:layout_marginTop="10dip"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:textSize="18dip"
android:textStyle="bold"
android:textColor="@android:color/white"
android:typeface="sans" />
<Button
android:id="@+id/ad_contactEmailButton"
android:background="@drawable/button_black"
android:layout_height="50dp"
android:layout_width="match_parent"
android:layout_marginTop="10dip"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:textSize="18dip"
android:textStyle="bold"
android:textColor="@android:color/white"
android:typeface="sans" />
<Button
android:id="@+id/ad_contactPhoneButton"
android:background="@drawable/button_black"
android:layout_height="50dp"
android:layout_width="match_parent"
android:layout_marginTop="10dip"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_marginBottom="20dip"
android:textSize="18dip"
android:textStyle="bold"
android:textColor="@android:color/white"
android:typeface="sans" />
</RelativeLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayoutTitle"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_above="@+id/relativeLayoutContact"
android:layout_alignParentTop="true" >
<TextView
android:id="@+id/ad_contactTitleTextView"
android:cacheColorHint="#00000000"
android:gravity="center"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="20dip"
android:textColor="#000000"
android:textSize="24dip"
android:textStyle="bold"
android:typeface="sans" />
<TextView
android:id="@+id/ad_contactAddressTextView"
android:cacheColorHint="#00000000"
android:gravity="center"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:textColor="#000000"
android:textSize="20dip"
android:typeface="sans" />
</LinearLayout>
</RelativeLayout>