본문 바로가기
Back End/Android(

Android/ 스크롤뷰 사용법

by healingmau 2022. 7. 11.

스크롤뷰 사용법

 

 

        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <TextView
                    android:id="@+id/txtLyrics"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="10dp"
                    android:text="TextView"
                    android:textSize="28sp" />

            </LinearLayout>
        </ScrollView>

댓글