Android вертикальное пространство между кнопками - PullRequest
0 голосов
/ 24 октября 2018

У меня проблема с компоновкой Android.Я не могу показать вам файл макета XML, поскольку я использую провайдера тонких клиентов Tabris.На рисунке ниже показан макет, записанный с помощью инспектора макетов.Чего я не понимаю, так это огромного вертикального пространства между разными кнопками.

Result Layout Inspector

Конечно, я добавил свойства макета (используется Frame layout) инспектора макета:

Layout Properties

Возможно, у некоторых из вас есть идея, как я могу уменьшить это вертикальное пространство между кнопками.

1 Ответ

0 голосов
/ 24 октября 2018

Я предлагаю вам использовать 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>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...