如何将元素放置在线性布局中更近?

时间:2013-06-13 19:32:46

标签: android android-linearlayout

我有这样的活动:

enter image description here

如您所见,复选框下方的底部不适合屏幕。如何让复选框在linearlayout中更接近?

这是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>

2 个答案:

答案 0 :(得分:3)

 android:layout_marginTop="-10dp"

你可以在所有复选框上添加一个带有减号( - )的顶部填充,对于第一个在顶部添加,在这些情况下为-10,但是你可以选择适合你的任何东西....把它们放得更近了

答案 1 :(得分:0)

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