0

假设我有一个看起来像这样的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin" >

    <TextView
        android:id="@+id/greeting"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello, world!" />

    <LinearLayout
        android:id="@+id/actions"
        style="?android:attr/buttonBarStyle"
        android:background="#dddddd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" >

        <Button
            android:id="@+id/button1"
            style="?android:attr/buttonBarButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:text="Button1" />

        <Button
            android:id="@+id/button2"
            style="?android:attr/buttonBarButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:text="Button2" />

    </LinearLayout>
</RelativeLayout>

在 Eclipse 中渲染,我得到以下信息:

在此处输入图像描述

请注意,ButtonBar 周围有一个边距。有什么办法可以在不影响 Activity 的其余部分的情况下删除它?如果我修改android:padding*属性,那么“Hello, world!” 将在 Activity 的左侧运行。

4

2 回答 2

2

将 移动android:padding*greeting元素,将其从父布局中移除。然后该项目单独具有填充,而按钮栏则没有。

如果您稍后需要添加其他项目(而不仅仅是单个TextView),您可能希望将它们包装在新布局中并将填充放在该布局上。

于 2013-03-09T22:16:22.043 回答
0

为您创建的每个布局设置 android:padding ...放置在父布局中的子级将为他们设置填充...您可以改用 layout_margin ...

于 2013-03-09T22:34:09.723 回答