Android UI - Android水平滚动视图

时间:2011-04-06 11:58:00

标签: android android-ui horizontalscrollview

有没有类似的样品? Android水平滚动视图...或者我该如何解决这个问题?

Enter image description here

2 个答案:

答案 0 :(得分:14)

伪:

<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>

玩得开心!

答案 1 :(得分:0)

试着看看这些: