缩小相对布局底部的差距

时间:2017-08-07 11:14:55

标签: android xml android-layout

在渲染时创建相对布局后,我发现布局下面有空间不需要。我确保所用元素的所有高度都有一个wrap_content属性作为高度的规范参数。 以下是摘录

<RelativeLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="#338FD8D8">

            <TextView
                    android:id="@+id/banner"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical|center"
                    android:textSize="25sp"
                    android:padding="3px"
                    android:textColor="#000"/>
            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:orientation="horizontal">

                <ImageView
                    android:id="@+id/logo"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.1"
                    android:layout_gravity="left"
                    android:src="@drawable/ic_launcher" />
                <TextView
                    android:id="@+id/description"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical|right"
                    android:textSize="15sp"
                    android:padding="3px"
                    android:layout_marginRight="100px"
                    android:textColor="#000"/>
            </LinearLayout>

         </RelativeLayout>

我的挑战是如何缩小最后一个内容

下方布局内发生的差距

1 个答案:

答案 0 :(得分:0)

不确定您想要实现的目标,但您可以将RelativeLayout高度更改为

  

机器人:layout_height = “match_parent”

另请查看android:fitsSystemWindows="true"的{​​{3}}。

希望这有帮助。