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

58 lines
2.4 KiB
XML
Raw Normal View History

2018-11-05 19:23:07 +05:30
<?xml version="1.0" encoding="utf-8"?>
2019-12-05 23:48:54 +05:30
<LinearLayout 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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-12-05 23:48:54 +05:30
android:orientation="vertical">
2018-11-05 19:23:07 +05:30
2019-12-05 23:48:54 +05:30
<code.name.monkey.retromusic.views.StatusBarView
android:id="@+id/status_bar"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
2019-12-05 23:48:54 +05:30
android:layout_height="0dp"
android:background="?attr/colorSurface"
tools:ignore="UnusedAttribute" />
2018-11-05 19:23:07 +05:30
2019-12-05 23:48:54 +05:30
<androidx.coordinatorlayout.widget.CoordinatorLayout
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"
2019-12-05 23:48:54 +05:30
android:background="?attr/colorSurface">
2019-09-28 23:22:49 +05:30
2019-12-05 23:48:54 +05:30
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
2019-09-28 23:22:49 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-12-06 22:43:09 +05:30
android:background="@android:color/transparent"
android:elevation="0dp"
app:elevation="0dp"
2019-12-05 23:48:54 +05:30
app:liftOnScroll="true">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
style="@style/Toolbar"
app:layout_collapseMode="pin"
2020-07-20 02:30:30 +05:30
app:navigationIcon="@drawable/ic_keyboard_backspace_black"
2019-12-05 23:48:54 +05:30
app:title="@string/whats_new"
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
2020-02-22 17:40:12 +05:30
android:id="@+id/container"
2019-12-05 23:48:54 +05:30
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">
<code.name.monkey.retromusic.views.LollipopFixedWebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2018-11-05 19:23:07 +05:30
2019-12-05 23:48:54 +05:30
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>