2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-30 09:29:30 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 13:07:33 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/coordinator_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-12-06 10:23:03 +00:00
|
|
|
android:id="@+id/appBarLayout"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
2018-08-08 08:03:38 +00:00
|
|
|
android:id="@+id/collapsing_toolbar"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
app:titleEnabled="false">
|
|
|
|
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2018-07-27 13:07:33 +00:00
|
|
|
android:id="@+id/toolbar"
|
2018-12-04 15:34:26 +00:00
|
|
|
style="@style/Toolbar"
|
2018-08-08 08:03:38 +00:00
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:title=""
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
|
|
|
<TextView
|
2018-12-06 10:23:03 +00:00
|
|
|
android:id="@+id/bannerTitle"
|
2018-08-22 17:54:07 +00:00
|
|
|
style="@style/BigTitleTextAppearance"
|
|
|
|
android:text="@string/licenses" />
|
2018-08-08 08:03:38 +00:00
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
<androidx.core.widget.NestedScrollView
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="fill_vertical"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
android:id="@+id/license"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2018-08-30 09:29:30 +00:00
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|