У меня есть следующий XML-файл -
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@color/white"
android:orientation="vertical"
android:padding="20dp">
<ImageView
android:id="@+id/products_row_item_product_image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher" />
<TextView
android:id="@+id/products_row_item_product_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fragment_marketplace_products_row_item_product_title"
android:textSize="17sp"
android:textStyle="bold" />
<TextView
android:id="@+id/products_row_item_description_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/products_row_item_product_description" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/very_light_grey"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:id="@+id/products_row_item_price_text_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:textSize="20sp"
android:textStyle="bold"
tools:text="$999.90" />
<ImageView
android:id="@+id/products_row_item_heart_image_view"
android:layout_width="27dp"
android:layout_height="27dp"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:scaleType="fitXY"
android:src="@drawable/like_heart" />
<TextView
android:id="@+id/products_row_item_likes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="end"
android:text="@string/fragment_marketplace_products_row_item_likes"
android:textSize="20sp" />
</LinearLayout>
</LinearLayout>
, создающий следующий макет -
Но проблема в том, чтоЯ получаю следующий результат -
У меня 2 вопроса -
1) Почему я не вижу цену TextView?
2) Я хочу установить цвет фона, который будет виден между каждым элементом строки. Как я могу сделать это, учитывая мой текущий макет? пытался придать Recyclerview цвет фона, но ничего не происходит, похоже, что между каждой ячейкой есть 0 пробелов, что кажется неправильным.