안드로이드

Center content in scroll view in android

알통몬_ 2021. 5. 21. 09:56
반응형
            <ScrollView
                android:id="@+id/scrollView"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:fillViewport="true">

                <androidx.appcompat.widget.AppCompatTextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center" />

            </ScrollView>

안드로이드 스크롤 뷰 안에 가운데 정렬하기

android:fillViewport="true" 속성을 주면 스크롤 뷰 안에 있는 Content가 크기에 맞춰 가운데 정렬이 된다.

반응형