투케이2K

190. (AndroidStudio/android/java) 액티비티 화면 스크롤 만들기 - ScrollView , LinearLayout 본문

Android

190. (AndroidStudio/android/java) 액티비티 화면 스크롤 만들기 - ScrollView , LinearLayout

투케이2K 2021. 9. 16. 12:45

[개발 환경 설정]

개발 툴 : AndroidStudio

개발 언어 : java


[소스 코드]

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <!-- [생성되는 자식들 세로 정렬 위해 orientation vertical 생성] -->



        <!-- [첫번째 자식] -->
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:orientation="horizontal"
            android:background="#343d46"
            android:layout_marginTop="10dp"
            android:layout_marginBottom="10dp">
        </LinearLayout>



        <!-- [두번째 자식] -->
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:orientation="horizontal"
            android:background="#ff0000"
            android:layout_marginTop="10dp"
            android:layout_marginBottom="10dp">
        </LinearLayout>



        <!-- [세번째 자식] -->
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:orientation="horizontal"
            android:background="#ff00ff"
            android:layout_marginTop="10dp"
            android:layout_marginBottom="10dp">
        </LinearLayout>



    </LinearLayout>
</ScrollView>

[결과 출력]


 

반응형
Comments