Good Afternoon! I want to use an image as background in my view, the problem is that when I use an image (With a color works perfectly) the background is placed over the elements, so it's not possible to see nothing.
<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"
tools:context=".Greet"
android:background="@drawable/fondo_panel" >
<ImageView android:layout_height="wrap_content"
android:layout_width="match_parent"
android:src="@drawable/logo_panel"/>
</RelativeLayout>
Do you know what's the problem? Thanks a lot!