Android垂直空间之间的按钮

时间:2018-10-24 07:51:45

标签: android tabris

我对Android的布局有疑问。由于使用瘦客户机提供程序Tabris,因此无法显示布局xml文件。下图显示了使用布局检查器记录的布局。我不明白的是为什么不同的按钮之间会有如此大的垂直空间。

Result Layout Inspector

当然,我添加了布局检查器的布局属性(使用框架布局):

Layout Properties

也许你们中有些人知道如何减少按钮之间的垂直空间。

1 个答案:

答案 0 :(得分:0)

我建议您使用LinearLayouts

例如

 <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical"
   android:layout_gravity="center"
   android:gravity="top|center">
        <TextView
            android:id="@+id/description"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/smsVerTit"
            android:textColor="@color/black"
            android:textSize="@dimen/BiggerTextSize"
            android:textStyle="bold"
            android:padding="10dp"/>

        <EditText
            android:id="@+id/smsCode"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:ems="7"
            android:gravity="center"
            android:hint="@string/smsCode"
            android:inputType="number"
            android:layout_marginTop="15dp"/>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:layout_marginTop="25dp"
            android:paddingBottom="10dp">
            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
               >
                <Button
                    android:id="@+id/cancelSMS"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/roundedbtn"
                    android:text="@string/cancel"
                    android:textColor="@android:color/white" />
            </LinearLayout>
            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                >
                <Button
                    android:id="@+id/confirmSMS"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/roundedbtn"
                    android:text="@string/confirm"
                    android:textColor="@android:color/white" />
            </LinearLayout>
        </LinearLayout>
        <Button
            android:id="@+id/otherMethodSMS"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="?android:attr/selectableItemBackground"
            android:padding="10dp"
            android:text="@string/otherMethods"
            android:textColor="@color/colorPrimaryDark"
            android:layout_marginBottom="13dp"/>
      </LinearLayout>