반응형
안드로이드 세로 또는 가로 스크롤 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>
반응형
'안드로이드' 카테고리의 다른 글
애드몹(AdMob) There was a problem getting an ad response. ErrorCode: 1 (0) | 2015.04.24 |
---|---|
안드로이드 다국어 처리를 위한 리소스 폴더 이름 (0) | 2015.04.24 |
플레이 스토어 - 앱 업데이트가 거부됨 (0) | 2015.04.24 |
In-App 개발 시 Base64 인코딩 RSA 공개 키(base64EncodedPublicKey) (0) | 2015.04.24 |
안드로이드 WebView 화면 전환 시 Reload 되는 현상 방지 (0) | 2015.04.24 |
댓글