2013-02-11 4 views
2

Je veux superposer imageview et galerie comme l'image suivanteComment superposer une image dans une galerie?

i want like this

j'ai essayé comme ça ..

<RelativeLayout 
      android:layout_width="match_parent" 
      android:layout_height="70dp" > 
<ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content"   
     android:src="@drawable/title_header" /> 

<Gallery 
     android:id="@+id/Gallery" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content"></Gallery> 

</RelativeLayout> 

mais son pas superposition. pls me aider ..

Répondre

1

s'il vous plaît essayer ce

<RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="70dp" > 

<Gallery 
    android:id="@+id/Gallery" 
    android:layout_width="fill_parent" 
    android:layout_marginTop="10dip" 
    android:layout_height="wrap_content"></Gallery> 

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_alignParentTop="true" 
    android:layout_height="wrap_content"   
    android:src="@drawable/title_header" /> 

</RelativeLayout> 

android:layout_marginTop="10dip" valeur donner au besoin.

+0

Merci! Ça marche! – bCliks

Questions connexes