Est-il possible d'avoir cumul des points de vue dans Android? Je voudrais avoir une ImageView avec une image png transparente à l'avant et un autre point de vue à l'arrière-plan.
edit:
C'est ce que j'ai en ce moment, le problème est que l'image dans le imageView n'est pas transparent, les parties qui devraient être transparentes sont juste du noir.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/gallerylayout"
>
<Gallery android:id="@+id/overview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ImageView android:id="@+id/navigmaske"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/navigmask"
/>
</RelativeLayout>
edit:
Je l'ai eu à travailler, c'était un fichier de thème à partir d'un autre programmeur de l'équipe. Juste changé ce
<item name="android:background">#FF000000</item>
pour ce
<item name="android:background">#00000000</item>