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

40 lines
1.7 KiB
XML
Raw Normal View History

2018-11-05 13:53:07 +00:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
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"
2019-04-20 05:29:45 +00:00
tools:context=".activities.WhatsNewActivity">
2018-11-05 13:53:07 +00:00
<com.google.android.material.appbar.AppBarLayout
2018-11-30 01:06:16 +00:00
android:id="@+id/appBarLayout"
2018-11-05 13:53:07 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-09-28 17:52:49 +00:00
app:liftOnScroll="true">
2018-11-05 13:53:07 +00:00
2019-09-29 08:37:57 +00:00
<com.google.android.material.appbar.MaterialToolbar
2018-11-05 13:53:07 +00:00
android:id="@+id/toolbar"
2018-12-04 15:34:26 +00:00
style="@style/Toolbar"
2018-11-05 13:53:07 +00:00
app:layout_collapseMode="pin"
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
app:title="@string/whats_new"
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
2018-11-05 13:53:07 +00:00
</com.google.android.material.appbar.AppBarLayout>
2019-09-28 17:52:49 +00:00
<androidx.core.widget.NestedScrollView
2018-11-05 13:53:07 +00:00
android:layout_width="match_parent"
2019-09-28 17:52:49 +00:00
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">
2019-09-28 17:52:49 +00:00
<code.name.monkey.retromusic.views.LollipopFixedWebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
2019-11-12 17:32:30 +00:00
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2018-11-05 13:53:07 +00:00
2019-09-28 17:52:49 +00:00
</androidx.core.widget.NestedScrollView>
2018-11-05 13:53:07 +00:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>