blob: 026382f8c41c0132b51aa8ad73dcf772e258e6f6 [file] [log] [blame]
Jiyong Parkb02e95f2021-07-04 15:59:46 +09001<?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>