티스토리 뷰

728x90

 


Scroll View

• 자식 뷰를 가질 수 있는 컨테이너 뷰

• 자식을 오직 하나만 가질 수 있다.

     - 자식으로 컨테이너 뷰를 갖는다.

• 속성

     - fillViewport : 자신(스크롤 뷰)에게 여백이 있으면 자식 컨테이너 뷰로 꽉 채우겠다.

<?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">

    <androidx.appcompat.widget.LinearLayoutCompat
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:background="#FF0000" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:background="#00FF00" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:background="#0000FF" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:background="#FF00FF" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:background="#00FFFF" />

    </androidx.appcompat.widget.LinearLayoutCompat>

</ScrollView>

스크롤하여 화면이 내려간 모습

 

 

 

 

 

 

 

이 글은

패스트 캠퍼스 Android 앱 개발의 정석 with Kotlin 올인원 패키지 Online

강의를 듣고 공부한 내용을 바탕으로 작성되었습니다.

 


728x90
댓글
공지사항