2010-09-15 13 views
0

J'ai créé une vue personnalisée par l'extension de la mise en page relative et il ressemble à ceci: alt textMultiple affichage personnalisé (dérivé de RelativeLayout) dans une ligne

La mise en page pour la vue:

<?xml version="1.0" encoding="utf-8"?> 
<merge xmlns:android="http://schemas.android.com/apk/res/android"> 
    <RelativeLayout android:layout_width="wrap_content" 
     android:layout_height="wrap_content" android:gravity="center_horizontal"> 
     <ImageView android:id="@+id/type_picture_preview" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:src="@drawable/type_picture_noimage" android:layout_alignParentRight="true" 
      android:paddingTop="15dip" android:paddingRight="15dip" /> 
     <ImageView android:id="@+id/type_picture_delete" android:src="@drawable/type_picture_delete" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:layout_alignParentRight="true" /> 
    </RelativeLayout> 
</merge> 

I Je me bats pour obtenir deux ou plusieurs dispositions sur une seule ligne. Des idées où je me trompe?

Répondre

0

je devais coder en dur la largeur/hauteur à l'aide des creux.

0

Utilisez LinearLayout comme récipient avec le orientation="vertical" et placez votre RelativeLayouts intérieur

+0

Malheureusement, cela ne fonctionne pas encore - d'autres idées? –