Я использую официальную реализацию Google Flexbox для выравнивания квадратов и хочу узнать, возможно ли выровнять последний элемент по левому краю. Я пытался использовать app: justifyContent = "flex_start", но он не умещался на весь экран, как app: justifyContent = "space_between". Я искал, но ничего не нашел об этом. Вы можете помочь мне? Вот изображение экрана и это код:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constraint_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent">
<com.google.android.flexbox.FlexboxLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:justifyContent="space_between"
app:flexWrap="wrap"
android:layout_margin="4dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:background="@color/colorPrimary"
android:layout_margin="4dp"/>
</com.google.android.flexbox.FlexboxLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>