forked from github/szkolny
17 lines
569 B
XML
17 lines
569 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="24dp">
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:autoLink="web|email"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textIsSelectable="true"
|
|
android:textSize="16sp" />
|
|
</ScrollView>
|