1. ScrollView


스크롤뷰는 말 그대로 스크롤 기능이 있는 뷰이다.

스크롤뷰는 화면에 보이는 공간을 넘어갔을 때 자동으로 스크롤을 만들어 준다.



2. 결과 화면




3. activity_main.xml


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.tistory.qlyh8.pracitice.MainActivity"
    android:layout_margin="10dp">
 
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="80sp"
            android:text="Hello world!\nHello world!\nHello world!\n"
            />
    </ScrollView>
</LinearLayout>
 
cs





출처: https://www.edwith.org/boostcourse-android/lecture/20484/

+ Recent posts