2016年3月25日 星期五

[Android] Layout增加上下捲動的捲軸

在畫畫面時,我們通常會用Layout框住物件,並且依照需求使用LinearLayout或RelativeLayout。
但Layout並沒有捲軸功能,若要增加捲軸則可在Layout前增加ScrollView即可解決。

xml範例如下

原xml:
    <RelativeLayout android:id="@+id/contentLayout"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent">

        ...

    </RelativeLayout>



新xml:
    <ScrollView android:id="@+id/contencrollView"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content">

        <RelativeLayout android:id="@+id/contentLayout"
            android:layout_height="fill_parent"
            android:layout_width="fill_parent">

            ...

        </RelativeLayout>
    </ScrollView>

沒有留言:

張貼留言