1

我有这样的活动:

在此处输入图像描述

如您所见,复选框下方的底部不适合屏幕。如何使复选框在线性布局中更近?

这是 XML(只是复选框 + 按钮):

    <LinearLayout
    android:layout_width="591dp"
    android:layout_height="match_parent"
    android:layout_weight="0.20" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="left|center_vertical|center_horizontal"
        android:orientation="vertical" >

        <CheckBox
            android:id="@+id/checkBox8"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="100dp"
            android:text="@string/madurez_2" />

        <CheckBox
            android:id="@+id/checkBox1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="130dp"
            android:text="@string/gestion_configuracion"
            android:textSize="12sp" />

        <CheckBox
            android:id="@+id/checkBox2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="130dp"
            android:text="@string/medicion_analisis"
            android:textSize="12sp" />

        <CheckBox
            android:id="@+id/checkBox3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="130dp"
            android:text="@string/monitorizacion_control"
            android:textSize="12sp" />

        <CheckBox
            android:id="@+id/checkBox4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="130dp"
            android:text="@string/planificacion_proyecto"
            android:textSize="12sp" />

        <CheckBox
            android:id="@+id/checkBox5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="130dp"
            android:text="@string/aseguramiento_calidad"
            android:textSize="12sp" />

        <CheckBox
            android:id="@+id/checkBox6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="130dp"
            android:text="@string/gestion_requisitos"
            android:textSize="12sp" />

        <CheckBox
            android:id="@+id/checkBox7"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="130dp"
            android:text="@string/gestion_acuerdos"
            android:textSize="12sp" />

        <Button
            android:id="@+id/button2"
            android:layout_width="142dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="170dp"
            android:layout_marginTop="20dp"
            android:text="@string/comenzar" />
    </LinearLayout>

</LinearLayout>
4

2 回答 2

3
 android:layout_marginTop="-10dp"

您可以在所有复选框上添加一个带有减号 (-) 的顶部填充,除了顶部的第一个复选框,在这种情况下为 -10,但您可以选择适合您的任何内容....应该让它们更接近

于 2013-06-13T20:56:53.967 回答
0

将每个复选框的边距设置为零

于 2013-06-13T19:47:16.803 回答