2020-03-30 21:39:21 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-01-19 13:15:09 +01:00
|
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-10-14 16:18:24 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2020-03-30 21:39:21 +02:00
|
|
|
|
2020-04-12 18:12:46 +02:00
|
|
|
<LinearLayout
|
2021-10-14 16:18:24 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2022-01-25 19:57:52 +01:00
|
|
|
android:paddingHorizontal="2.5dp">
|
|
|
|
|
|
|
|
<emu.skyline.views.DragIndicatorView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingVertical="8dp" />
|
2021-10-14 16:18:24 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/library_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAlignment="center"
|
2022-01-19 13:15:09 +01:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline6"
|
|
|
|
android:textSize="32sp"
|
2021-10-14 16:18:24 +02:00
|
|
|
tools:text="Skyline" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/library_url"
|
2020-03-30 21:39:21 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-10-14 16:18:24 +02:00
|
|
|
android:autoLink="web"
|
2022-01-19 13:15:09 +01:00
|
|
|
android:paddingTop="6dp"
|
2021-10-14 16:18:24 +02:00
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline5"
|
|
|
|
android:textSize="15sp"
|
2022-01-25 19:57:52 +01:00
|
|
|
tools:ignore="TouchTargetSizeCheck"
|
2021-10-14 16:18:24 +02:00
|
|
|
tools:text="https://github.com/skyline-emu/skyline" />
|
2020-03-30 21:39:21 +02:00
|
|
|
|
2020-04-12 18:12:46 +02:00
|
|
|
<TextView
|
2021-10-14 16:18:24 +02:00
|
|
|
android:id="@+id/library_copyright"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-01-19 13:15:09 +01:00
|
|
|
android:paddingTop="4dp"
|
2021-10-14 16:18:24 +02:00
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline4"
|
2022-01-19 13:15:09 +01:00
|
|
|
android:textSize="15sp"
|
2021-11-11 12:05:30 +01:00
|
|
|
tools:text="Copyright © 2019-2021\nSkyline Team and Contributors" />
|
2020-03-30 21:39:21 +02:00
|
|
|
|
|
|
|
<TextView
|
2021-10-14 16:18:24 +02:00
|
|
|
android:id="@+id/license_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:autoLink="web"
|
2022-07-30 13:22:01 +02:00
|
|
|
android:justificationMode="inter_word"
|
|
|
|
android:paddingHorizontal="15dp"
|
2022-01-19 13:15:09 +01:00
|
|
|
android:paddingTop="15dp"
|
2021-11-11 12:05:30 +01:00
|
|
|
android:paddingBottom="15dp"
|
2022-07-30 13:22:01 +02:00
|
|
|
android:textAlignment="viewStart"
|
2021-10-14 16:18:24 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
|
|
|
|
tools:text="@string/mpl2_license" />
|
2020-03-30 21:39:21 +02:00
|
|
|
|
2020-04-12 18:12:46 +02:00
|
|
|
</LinearLayout>
|
2022-01-19 13:15:09 +01:00
|
|
|
</androidx.core.widget.NestedScrollView>
|