Вообщем хочу, что бы текст был на картинке, все ок, только, сверху и снизу есть белые зазоры, если вставлять 1 картинку без лэйаута, то все ок. А как если есть лэйаут?
<RelativeLayout 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/colorWhite"
tools:context="com.example.a1.tutorial.fragments.FragmentDiscription">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="false"
android:id="@+id/imageDiscription" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:background="@color/colorWhite"
android:scaleType="centerCrop"
android:textColor="@color/colorBlack"
android:textSize="20sp"
android:textStyle="bold"
android:id="@+id/discription"/>
</RelativeLayout>