Вот как это выглядит в окне предварительного просмотра и на устройстве.
Код для макета строки и макета RecyclerView является базовым когда он получает
Row имеет один ImageView:
<androidx.constraintlayout.widget.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 = "175dp"
android:layout_height = "175dp"
android:layout_margin = "4dp">
<ImageView
android:id = "@+id/imageView"
android:layout_width = "0dp"
android:layout_height = "0dp"
app:layout_constraintBottom_toBottomOf = "parent"
app:layout_constraintEnd_toEndOf = "parent"
app:layout_constraintStart_toStartOf = "parent"
app:layout_constraintTop_toTopOf = "parent"
tools:ignore = "ContentDescription"
tools:srcCompat = "@tools:sample/avatars" />
</androidx.constraintlayout.widget.ConstraintLayout>
RecyclerView (который является единственным представлением в этом фрагменте) представляет собой Grid с двумя промежутками:
<androidx.recyclerview.widget.RecyclerView
android:id = "@+id/recyclerView"
android:layout_width = "0dp"
android:layout_height = "0dp"
app:layoutManager = "androidx.recyclerview.widget.GridLayoutManager"
app:layout_constraintBottom_toBottomOf = "parent"
app:layout_constraintEnd_toEndOf = "parent"
app:layout_constraintStart_toStartOf = "parent"
app:layout_constraintTop_toTopOf = "parent"
app:spanCount = "2"
tools:listitem = "@layout/row_dir_observer_secondary" />
Я понятия не имею, что не так, пробовал все настройки макета, связанные с гравитацией, пробовал веса, но единственное, что сработало - это предоставление padding_start родителю.