Android UI - horizontal scroll view in Android

Are there any patterns like this? Viewing Android horizontal scroll ... Or how can I do this?

Enter image description here

+8
android horizontalscrollview android-ui
source share
2 answers

Try a look at them:

0
source share

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> 

Good luck

+14
source share

All Articles