Это то, что я хочу:
Левое изображение 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>
Но результат бессмысленный
Как я могу это сделать?Нужно ли использовать макет таблицы?
Заранее спасибо