如何使用水平scrollview组件?

时间:2012-10-05 06:24:44

标签: android

我想创建一个水平滚动视图,就像图像horizontal scroll view

中显示的那样

在android小部件中,我在复合部分找到了Horizo​​ntal Scroll View小部件,但不知道如何使用它。请帮助

1 个答案:

答案 0 :(得分:2)

首先创建xml file并添加HorizontalScrollView,然后将一个布局作为子项添加到此。然后你可以添加任何号码。视图对新添加的孩子来说是完整的scroll

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <HorizontalScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
            <!--  child views here -->
        </RelativeLayout>
    </HorizontalScrollView>
</LinearLayout>