blob: 026382f8c41c0132b51aa8ad73dcf772e258e6f6 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFC107"
android:scrollbars="horizontal|vertical"
android:textAlignment="textStart"
tools:context=".MainActivity">
<ScrollView
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFEB3B"
android:fontFamily="monospace"
android:textColor="#000000" />
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>