안드로이드 프로그래밍
[안드로이드 6일차] ScrollView
ok4u
2019. 1. 29. 22:53
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context=".MainActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="HelloWorld"
android:textSize="100sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:text="HelloWorld"
android:textSize="100sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:text="HelloWorld"
android:textSize="100sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</ScrollView>
</LinearLayout>
ScrollView는 다음과 같이 <LinearLayout> 을 안에 다시 추가해야 함.