Android UI默认保证金删除

时间:2014-09-27 03:56:50

标签: android xml

IMAGE

我正在尝试从布局中删除这些自动边距

这是我的Layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:weightSum="3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.shifz.bardofavon.MainActivity" >

<LinearLayout
android:weightSum="3"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

    <LinearLayout
    android:weightSum="2"
    android:orientation="vertical"
    android:layout_weight="2"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

            <Button
                android:layout_weight="1"
                android:id="@+id/b1"
                android:layout_height="match_parent"
                android:layout_width="match_parent"
                android:text="Quotes"
                />
            <Button
                android:layout_weight="1"
                android:id="@+id/b2"
                android:layout_height="match_parent"
                android:layout_width="match_parent"
                android:text="Quotes"
                />
    </LinearLayout>

    <LinearLayout
    android:weightSum="1"
    android:layout_weight="1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >   
            <Button
                android:layout_weight="1"
                android:id="@+id/b3"
                android:layout_height="match_parent"
                android:layout_width="match_parent"
                android:text="MostWeight"
                />
    </LinearLayout>

</LinearLayout>



<LinearLayout
android:weightSum="3"
android:layout_weight="2"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

    <Button
        android:layout_weight="1"
        android:id="@+id/b4"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Biography"
        />
    <Button
        android:layout_weight="2"
        android:id="@+id/b5"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Biography"
        />


</LinearLayout>    

1 个答案:

答案 0 :(得分:0)

您正在使用权重属性,因此对于Button,它将需要一些默认边距。为避免这种情况,有两种方法。

1)将Button的背景设为Null。像,

android:background="@null"

2)将一些背景颜色应用于按钮。

android:background="@color/red"

这两个选项可以避免您的问题。