2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-12-05 18:18:54 +00:00
|
|
|
<LinearLayout 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"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-12-05 18:18:54 +00:00
|
|
|
<code.name.monkey.retromusic.views.StatusBarView
|
|
|
|
android:id="@+id/status_bar"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:background="?attr/colorSurface"
|
|
|
|
tools:ignore="UnusedAttribute" />
|
2018-08-08 08:03:38 +00:00
|
|
|
|
2019-12-05 18:18:54 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:background="?attr/colorSurface">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-12-05 18:18:54 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appBarLayout"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?colorPrimary"
|
|
|
|
app:liftOnScroll="true">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
app:layout_collapseMode="pin"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black"
|
2020-02-26 16:49:24 +00:00
|
|
|
app:title="@string/licenses"
|
2019-12-05 18:18:54 +00:00
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal"
|
|
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="fill_vertical"
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
|
|
|
|
2019-12-10 17:36:20 +00:00
|
|
|
<code.name.monkey.retromusic.views.LollipopFixedWebView
|
2019-12-05 18:18:54 +00:00
|
|
|
android:id="@+id/license"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
</LinearLayout>
|