Центрирование внутри LinearLayout - PullRequest
0 голосов
/ 03 июня 2018

Как я могу центрировать три элемента внутри LinearLayout?Я пробовал несколько вещей, но все они расположены слева

       <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">



            <Button
                android:layout_width="48dp"
                android:layout_height="40dp"
                android:drawableBottom="@drawable/arrow_white_down"
                android:theme="@style/PasswordButton" />

            <TextView
                android:id="@+id/TempNumb"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="5dp"
                android:paddingTop="0dp"
                android:text="8°C"
                android:textSize="30sp" />

            <Button
                android:layout_width="48dp"
                android:layout_height="40dp"
                android:drawableBottom="@drawable/arrow_white_up"
                android:theme="@style/PasswordButton" />

        </LinearLayout>

Оказывается, все это выглядит так: enter image description here

Я хочу, чтобы все былоразмещен в центре.Как мне этого добиться?

Ответы [ 2 ]

0 голосов
/ 03 июня 2018

Просто добавьте это android:gravity="center" в свой LinearLayout.

0 голосов
/ 03 июня 2018

Просто сделайте это в вашем LinearLayout

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

это мой вывод

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...