Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | xmlns:app="http://schemas.android.com/apk/res-auto" |
| 4 | xmlns:tools="http://schemas.android.com/tools" |
| 5 | android:layout_width="match_parent" |
| 6 | android:layout_height="match_parent" |
| 7 | android:background="#FFC107" |
| 8 | android:scrollbars="horizontal|vertical" |
| 9 | android:textAlignment="textStart" |
| 10 | tools:context=".MainActivity"> |
| 11 | |
| 12 | <ScrollView |
| 13 | android:id="@+id/scrollview" |
| 14 | android:layout_width="match_parent" |
| 15 | android:layout_height="match_parent"> |
| 16 | |
| 17 | <TextView |
| 18 | android:id="@+id/textview" |
| 19 | android:layout_width="match_parent" |
| 20 | android:layout_height="wrap_content" |
| 21 | android:background="#FFEB3B" |
| 22 | android:fontFamily="monospace" |
| 23 | android:textColor="#000000" /> |
| 24 | </ScrollView> |
| 25 | |
| 26 | </androidx.constraintlayout.widget.ConstraintLayout> |