0

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

结果布局检查器

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

布局属性

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

4

1 回答 1

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>
于 2018-10-24T08:10:27.823 回答