Android UI - Android horizontal scroll view

后端 未结 2 1088
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-11 03:36

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

\"Enter

相关标签:
2条回答
  • 2020-12-11 04:20

    Try to have a look at these:

    • Sample
    • Sample2
    0 讨论(0)
  • 2020-12-11 04:34

    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!

    0 讨论(0)
提交回复
热议问题