I've a textview and a view, I Want to show the textview above the view, It's working well, But when adding elevation to the View, the TextView is hidden under that view .
XML :
<View
android:layout_width="wrap_content"
android:layout_height="100dp"
android:layout_margin="10dp"
android:elevation="2dp"
android:background="#ffffffff"
android:id="@+id/view" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Text"
android:id="@+id/textView"
android:layout_alignTop="@+id/view"
android:layout_toRightOf="@+id/view"
android:layout_toEndOf="@+id/view" />