<?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> 을 안에 다시 추가해야 함.
'안드로이드 프로그래밍' 카테고리의 다른 글
[안드로이드 8일차] 액티비티 생명주기 (0) | 2019.01.31 |
---|---|
[안드로이드 7일차] ListView (0) | 2019.01.30 |
[안드로이드 5일차] Common Intents (ACTION_SEARCH) (0) | 2019.01.22 |
[안드로이드 4일차] Common Intents (ACTION_DIAL) (0) | 2019.01.22 |
[안드로이드 3일차] startActivityForResult() 다루어 보기 (0) | 2019.01.21 |