18 lines
570 B
XML
18 lines
570 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dip"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textSize="15sp"
|
|
tools:text="@string/input"/>
|
|
|
|
</ScrollView>
|