2020-03-30 21:39:21 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-12 18:12:46 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-30 21:39:21 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-12 18:12:46 +02:00
|
|
|
android:layout_height="wrap_content">
|
2020-03-30 21:39:21 +02:00
|
|
|
|
2020-04-12 18:12:46 +02:00
|
|
|
<LinearLayout
|
2020-03-30 21:39:21 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-12 18:12:46 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="10dp">
|
2020-03-30 21:39:21 +02:00
|
|
|
|
2020-04-12 18:12:46 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/license_url"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2"
|
|
|
|
android:textSize="15sp" />
|
2020-03-30 21:39:21 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/license_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="10dp"
|
2020-04-12 18:12:46 +02:00
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1" />
|
2020-03-30 21:39:21 +02:00
|
|
|
|
2020-04-12 18:12:46 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|