I need some help with android layout
Here is a imageView
<ImageView
android:id="@+id/fragment_user_profile_avatar"
android:layout_width="match_parent"
android:layout_height="305dp"
android:scaleType="centerCrop"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:background="@color/feed_bg" />
And the textView on ImageView
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/user_name"
android:textColor="#ffffffff"
android:textSize="28sp"
android:fontFamily="roboto-regular"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
It all under one RelativeLayout. When i'm trying to set imageView's elevation, textView is hiding under the imageView.
Thanks in advance!