본문 바로가기
안드로이드

안드로이드 - ScrollView & HorizontalScrollView

by Dokon Jang 2015. 4. 24.
반응형

안드로이드 세로 또는 가로 스크롤 View.

 

- 세로(상하 방향) 스크롤 : ScrollView

  아래와 같이 ScrollView에 LinearLayout을 추가하고 orientation속성에 vertical을 지정하여 사용하면됩니다.

<ScrollView
    android:id="@+id/sv_layout"
    android:layout_weight="1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <LinearLayout
        android:id="@+id/ll_layout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">
        <!-- ImageView, Button 등을 세로로 배치 -->
    </LinearLayout>
</ScrollView>

 

- 가로(좌우 방향) 스크롤 : HorizontalScrollView

  아래와 같이 HorizontalScrollView에 LinearLayout을 추가하고 orientation속성에 horizontal을 지정하여 사용하면됩니다.

 

 <HorizontalScrollView
    android:id="@+id/sv_layout"
    android:layout_weight="1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <LinearLayout
        android:id="@+id/ll_layout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal">
         <!-- ImageView, Button 등을 가로로 배치 -->
    </LinearLayout>
</HorizontalScrollView>​

 

반응형

댓글