2018-11-05 19:23:07 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-10-25 20:04:36 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-11-05 19:23:07 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-10-25 20:04:36 +05:30
|
|
|
android:background="?attr/colorSurface"
|
|
|
|
android:fitsSystemWindows="true">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appBarLayout"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:layout_width="match_parent"
|
2021-10-25 20:04:36 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:elevation="0dp"
|
2021-11-12 17:10:20 +05:30
|
|
|
app:liftOnScroll="true"
|
|
|
|
android:fitsSystemWindows="true">
|
2021-10-25 20:04:36 +05:30
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black"
|
|
|
|
app:title="@string/whats_new"
|
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:id="@+id/container"
|
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"
|
2021-10-25 20:04:36 +05:30
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
2021-09-09 00:00:20 +05:30
|
|
|
|
2021-10-25 20:04:36 +05:30
|
|
|
<code.name.monkey.retromusic.views.LollipopFixedWebView
|
|
|
|
android:id="@+id/webView"
|
2019-09-28 23:22:49 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-10-25 20:04:36 +05:30
|
|
|
android:scrollbars="none"
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2021-10-25 20:04:36 +05:30
|
|
|
</androidx.core.widget.NestedScrollView>
|
2021-11-12 17:10:20 +05:30
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
|
|
android:id="@+id/tgFab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:text="@string/view_on_telegram"
|
|
|
|
app:icon="@drawable/ic_telegram_white" />
|
2021-10-25 20:04:36 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|