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

Это то, что я хочу: enter image description here

Левое изображение 45%, среднее 10% и правое 45%, а высота всех их должна оставаться пропорциональной ширине

Вот что я попробовал:

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginStart="8dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="8dp"
        android:orientation="horizontal"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/textView13">

        <ImageView
            android:id="@+id/imageLeft"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.45"
            android:src="@drawable/placeholder_white" />

        <ImageView
            android:id="@+id/margin"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.1"
            android:src="@drawable/placeholder_white" />

        <ImageView
            android:id="@+id/imageRight"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.45"
            android:src="@drawable/placeholder_white" />

    </LinearLayout>

Но результат бессмысленный

Как я могу это сделать?Нужно ли использовать макет таблицы?

Заранее спасибо

1 Ответ

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

Вам необходимо установить android:layout_width="0dp" для каждого дочернего элемента в LinearLayout и заменить android:layout_height="0dp" для LinearLayout на android:layout_height="wrap_content" и установить конкретное значение android:layout_heigh для каждого дочернего элемента.Например:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginStart="8dp"
    android:layout_marginTop="16dp"
    android:layout_marginEnd="8dp"
    android:orientation="horizontal"
    xmlns:android="http://schemas.android.com/apk/res/android"
    >

    <ImageView
        android:id="@+id/imageLeft"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.45"
        android:adjustViewBounds="true"
        android:src="@color/black" />

    <ImageView
        android:id="@+id/margin"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.1"
        android:src="@color/blue" />

    <ImageView
        android:id="@+id/imageRight"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.45"
        android:adjustViewBounds="true"
        android:src="@color/red" />

</LinearLayout>

РЕДАКТИРОВАТЬ: прикрепил картинку enter image description here

РЕДАКТИРОВАТЬ: прикрепил скриншот с изображением 48dp enter image description here

...