16 lines
555 B
XML
16 lines
555 B
XML
<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:textColor="#000"
|
|
android:textSize="16sp"
|
|
tools:text="whatever" />
|
|
|
|
</ScrollView> |