2011-04-06 12 views

Respuesta

0

Trata de echar un vistazo a los siguientes:

+0

Hmmmm .... ya he visto este ejemplo ... pero esto usa la clase Gallery ... ¿cuál es mejor usar Gallery o HorizontalScrollView? –

+0

Según yo, es mejor usar 'GalleryView' que' HorizontalScrollView' .. Es mi sugerencia .. Mejor ve lo que más te convenga. – Hussain

+0

Utilice HSV es más práctico ... el resto depende de usted .... – Programmer

14

Pseudo:

<LinearLayout android:orientation="vertical"> 
    <HorizontalScrollView> 
     <LinearLayout android:orientation="horizontal"> 
      <Image1 /> 
      <Image2 /> 
      <Image3 /> 
      <Image4 /> 
      <Image5 /> 
     </LinearLayout> 
    </HorizontalScrollView> 
    <LinearLayout android:orientation="horizontal"> 
     <Button1 android:layout_weight="1" /> 
     <Button2 android:layout_weight="1" /> 
     <Button3 android:layout_weight="1" /> 
     <Button4 android:layout_weight="1" /> 
    </LinearLayout > 
</LinearLayout> 

¡Diviértete!

Cuestiones relacionadas