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 | |
Jiyong Park | af1a74b | 2021-07-07 12:23:52 +0900 | [diff] [blame] | 12 | <LinearLayout |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 13 | android:layout_width="match_parent" |
Jiyong Park | af1a74b | 2021-07-07 12:23:52 +0900 | [diff] [blame] | 14 | android:layout_height="match_parent" |
| 15 | android:orientation="vertical"> |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 16 | |
Jiyong Park | af1a74b | 2021-07-07 12:23:52 +0900 | [diff] [blame] | 17 | <LinearLayout |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 18 | android:layout_width="match_parent" |
| 19 | android:layout_height="wrap_content" |
Jiyong Park | af1a74b | 2021-07-07 12:23:52 +0900 | [diff] [blame] | 20 | android:orientation="horizontal"> |
| 21 | |
| 22 | <Button |
| 23 | android:id="@+id/runStopButton" |
| 24 | android:layout_width="wrap_content" |
| 25 | android:layout_height="wrap_content" |
| 26 | android:text="Run" /> |
| 27 | |
| 28 | <CheckBox |
| 29 | android:id="@+id/debugMode" |
| 30 | android:layout_width="wrap_content" |
| 31 | android:layout_height="wrap_content" |
| 32 | android:layout_weight="1" |
| 33 | android:text="Debug mode" /> |
| 34 | </LinearLayout> |
| 35 | |
| 36 | <ScrollView |
| 37 | android:id="@+id/scrollview" |
| 38 | android:layout_width="match_parent" |
| 39 | android:layout_height="match_parent"> |
| 40 | |
| 41 | <TextView |
| 42 | android:id="@+id/consoleOutput" |
| 43 | android:layout_width="match_parent" |
| 44 | android:layout_height="wrap_content" |
| 45 | android:background="#FFEB3B" |
| 46 | android:fontFamily="monospace" |
| 47 | android:textColor="#000000" /> |
| 48 | </ScrollView> |
| 49 | </LinearLayout> |
Jiyong Park | b02e95f | 2021-07-04 15:59:46 +0900 | [diff] [blame] | 50 | |
| 51 | </androidx.constraintlayout.widget.ConstraintLayout> |