PlayerAndroid/app/src/main/res/layout/activity_license.xml

38 lines
1.6 KiB
XML
Raw Normal View History

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: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"
2019-09-28 17:52:49 +00:00
android:background="?colorPrimary"
app:liftOnScroll="true">
2018-08-08 08:03:38 +00:00
2019-09-29 08:37:57 +00:00
<com.google.android.material.appbar.MaterialToolbar
2019-09-28 17:52:49 +00:00
android:id="@+id/toolbar"
style="@style/Toolbar"
app:layout_collapseMode="pin"
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
app:title="@string/licenses"
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal"
2019-09-28 17:52:49 +00:00
tools:ignore="UnusedAttribute" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</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"
2019-11-12 17:32:30 +00:00
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
2018-07-27 13:07:33 +00:00
<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>