2017-07-04 07:31:53 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-07-04 07:31:53 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fillViewport="true">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin">
|
2017-07-04 07:31:53 +00:00
|
|
|
|
2017-12-05 16:07:31 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/app_license_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_vertical_margin"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:paddingBottom="10dp"
|
2017-12-05 16:07:31 +00:00
|
|
|
android:text="@string/app_license_title"
|
|
|
|
android:textAppearance="@android:style/TextAppearance.Large" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/app_license"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:text="@string/app_license" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/app_read_license"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Borderless"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_marginRight="@dimen/activity_vertical_margin"
|
2017-12-05 16:07:31 +00:00
|
|
|
android:text="@string/read_full_license" />
|
|
|
|
|
2017-07-04 07:31:53 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
2017-12-05 16:07:31 +00:00
|
|
|
android:paddingTop="10dp"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
2017-07-04 07:31:53 +00:00
|
|
|
android:text="@string/title_licenses"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/software_components"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
</LinearLayout>
|
2020-10-09 18:24:02 +00:00
|
|
|
</androidx.core.widget.NestedScrollView>
|