티스토리 뷰
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
'📱 Android > 🔍 UI' 카테고리의 다른 글
[Android/UI] 14. EditText (0) | 2022.11.01 |
---|---|
[Android/UI] 13. Resource(리소스) (0) | 2022.10.19 |
[Android/UI] 11. Gravity(그래비티) (0) | 2022.10.19 |
[Android/UI] 10. Frame Layout(프레임 레이아웃) (0) | 2022.10.19 |
[Android/UI] 9. Constraint Layout(컨스트레인트 레이아웃) (0) | 2022.10.17 |
댓글
공지사항