ScrollView
상하로 스크롤되는 뷰 화면을 구성할 수 있다.
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="200dp"
android:text="A Button"/>
<Button
android:layout_width="wrap_content"
android:layout_height="200dp"
android:text="B Button"/>
<Button
android:layout_width="wrap_content"
android:layout_height="200dp"
android:text="C Button"/>
<Button
android:layout_width="wrap_content"
android:layout_height="200dp"
android:text="D Button"/>
<Button
android:layout_width="wrap_content"
android:layout_height="200dp"
android:text="E Button"/>
<Button
android:layout_width="wrap_content"
android:layout_height="200dp"
android:text="F Button"/>
</LinearLayout>
</ScrollView>
'안드로이드' 카테고리의 다른 글
AdapterView: Custom Adapter 만들기 (0) | 2016.04.25 |
---|---|
AdapterView: ListView (0) | 2016.04.25 |
레이아웃: TableLayout, TableRow (0) | 2016.04.22 |
레이아웃: FrameLayout (0) | 2016.04.22 |
LinearLayout을 RelativeLayout으로 쉽게 변환하기 (0) | 2016.04.22 |