Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android UI - Android horizontal scroll view

Are there any samples similar to this? Android horizontal scroll view... Or how can I go about this?

Enter image description here

like image 254
Arun Abraham Avatar asked Apr 06 '11 11:04

Arun Abraham


1 Answers

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>

Have fun!

like image 137
Mark Mooibroek Avatar answered Oct 06 '22 23:10

Mark Mooibroek