Поместите справа в LinearLayout - PullRequest
0 голосов
/ 29 марта 2019

Мне нужно поместить секунды TextView и ImageView справа, но гравитация не движется. Как я могу сделать? Может быть, «гравитация» не подходит? Спасибо!

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <ImageView
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:src="@drawable/JuventusLogo"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="JUVENTUS"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="REAL MADRID"/>
    <ImageView
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_gravity="right"
        android:src="@drawable/RealMadridLogo"/>

</LinearLayout>

1 Ответ

0 голосов
/ 29 марта 2019

Этого можно добиться, используя:

ConstraintLayout

ConstraintLayout позволяет создавать сложные макеты с иерархией плоских представлений (без вложенных групп представлений, таких как LinearLayout в вашем примере).Это похоже на RelativeLayout в том, что все представления выложены в соответствии с отношениями между братьями и сестрами.ConstraintLayout обладает гораздо большей гибкостью и работает лучше, чем RelativeLayout.

ConstraintLayout доступен в качестве библиотеки поддержки, поэтому вам необходимо добавить новую зависимость:

implementation 'com.android.support.constraint:constraint-layout:1.1.3'

Вы можете найти сообщения о различиях между ConstraintLayout и RelativeLayout или Как использовать ограничение (отношения)

Пример:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="30dp"
    tools:context=".MainActivity">

    <ImageView
        android:id="@+id/first_logo"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:background="#F00"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/first_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="JUVENTUS"
        app:layout_constraintBottom_toBottomOf="@id/first_logo"
        app:layout_constraintStart_toEndOf="@id/first_logo"
        app:layout_constraintTop_toTopOf="@id/first_logo" />

    <TextView
        android:id="@+id/second_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end"
        android:text="REAL MADRID"
        app:layout_constraintBottom_toBottomOf="@id/second_logo"
        app:layout_constraintEnd_toStartOf="@id/second_logo"
        app:layout_constraintTop_toTopOf="@id/second_logo" />

    <ImageView
        android:id="@+id/second_logo"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_gravity="end"
        android:background="#00F"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

ConstraintLayout


LinearLayout

LinearLayout - это группа представлений, которая выравнивает все дочерние элементы в одном направлении (вертикально или горизонтально, как в вашем примере).Вы можете установить android:layout_weight для отдельных дочерних представлений, чтобы указать, как линейный макет делит оставшееся пространство между содержащимися в нем представлениями.

Об этом много сообщений:

Пример:

<?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:paddingLeft="16dp"
    android:paddingRight="16dp">

    <ImageView
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:background="#F00" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="30dp"
        android:layout_weight="1"
        android:gravity="center_vertical"
        android:text="JUVENTUS" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="30dp"
        android:layout_gravity="end"
        android:layout_weight="1"
        android:gravity="center_vertical|end"
        android:text="REAL MADRID" />

    <ImageView
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:background="#00F" />

</LinearLayout>

LinearLayout

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