摆脱线性布局中按钮之间的 space

Getting rid of space between Buttons in Linear Layout

我无法缩小线性布局中 2 个按钮之间的间距。 我尝试了很多组合,但都没有成功。

这是我的 XML 片段:

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="100dp"
    android:id="@+id/linSocial">
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/facebook"
        android:id="@+id/btFacebook"
        android:visibility="gone" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/gmaillogo"
        android:id="@+id/btGmail"
        android:layout_marginTop="1dp"
        android:visibility="gone"/>

</LinearLayout>

试试这个

 <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/linSocial">
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/facebook"
    android:id="@+id/btFacebook"
    android:visibility="gone" />
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/gmaillogo"
    android:id="@+id/btGmail"
    android:layout_marginTop="5dp"
    android:visibility="gone"/>