Back End/Android(
Android/ 스크롤뷰 사용법
healingmau
2022. 7. 11. 17:43
스크롤뷰 사용법
<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>