繁体   English   中英

默认情况下添加了“线性布局”边距。 如何避免呢? Android的

[英]Linear Layout margin added by default. How to avoid that? Android

我创建了4个线性布局的按钮。 这是我的xml。

<?xml version="1.0" encoding="utf-8"?>


<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="3">
    <Button android:id="@+id/button1"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:layout_width="wrap_content"
        android:text="Account"
        />
    <Button android:id="@+id/button2"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:layout_width="wrap_content"
        android:text="History"
        />
    <Button
        android:id="@+id/button3"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:layout_width="wrap_content"
        android:text="Settings"
        />
</LinearLayout>

但是在布局上方,为所有3个按钮添加了所有边距。 为什么默认情况下会添加边距? 如何避免呢?

在此处输入图片说明

试试看,它可以像您想要的那样工作,

 <LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    >

    <Button android:id="@+id/button1"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:text="Account"
        android:background="#80ffdd10"
        />
    <Button android:id="@+id/button2"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:background="#800aad10"
        android:text="History"
        />
    <Button
        android:id="@+id/button3"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:text="Settings"
        android:background="#8c9eff"
        />
</LinearLayout>

在按钮中,设置android:layout_width="0dp"而不是wrap_content

这是因为您已为水平LinearLayout按钮赋予了weight属性,每个Button将水平填充根布局的1/3。 如果您使用的是垂直Linear Layout ,则应设置android:layout_height="0dp"

希望这会帮助你。

默认情况下,这些是Android Button Widget的阴影。 但是,如果要强制将一个按钮与另一个按钮附加在一起,则根据需要将以下属性添加到每个buttons

android:layout_marginRight="-5dp"
android:layout_marginLeft="-5dp"

注意:根据需要增加或减小属性的值( 当前为-5dp )。

您可以使用自定义背景,它将解决您的问题

android:background="#8c9eff"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM