Android RecyclerView Проблема с разметкой макетов - PullRequest
0 голосов
/ 22 марта 2019

Я пытаюсь создать макет повторного просмотра, который заполняется из базы данных Room, где каждая запись состоит из просмотра изображений и просмотра текста. Есть некоторое странное расстояние выше и ниже изображения. Есть идеи? Спасибо!

Top part of app screen

Bottom part of app screen

Вот XML-макет recylcerview:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp">

<ImageView
    android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
<TextView
    android:id="@+id/textView"
    style="@style/word_title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/holo_purple" />
</LinearLayout>
...