2018-11-05 19:23:07 +05:30
|
|
|
<?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 10:59:45 +05:30
|
|
|
tools:context=".activities.WhatsNewActivity">
|
2018-11-05 19:23:07 +05:30
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/appBarLayout"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-28 23:22:49 +05:30
|
|
|
app:liftOnScroll="true">
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2019-09-29 14:07:57 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2018-11-05 19:23:07 +05:30
|
|
|
android:id="@+id/toolbar"
|
2018-12-04 21:04:26 +05:30
|
|
|
style="@style/Toolbar"
|
2018-11-05 19:23:07 +05:30
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
|
2019-10-03 00:24:39 +05:30
|
|
|
app:title="@string/whats_new"
|
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
|
2018-11-05 19:23:07 +05:30
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<androidx.core.widget.NestedScrollView
|
2018-11-05 19:23:07 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-09-28 23:22:49 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="fill_vertical"
|
2019-11-12 23:02:30 +05:30
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
2019-09-28 23:22:49 +05:30
|
|
|
|
|
|
|
<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 23:02:30 +05:30
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
</androidx.core.widget.NestedScrollView>
|
2018-11-05 19:23:07 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|