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"
|
|
|
|
tools:context="code.name.monkey.retromusic.ui.activities.WhatsNewActivity">
|
|
|
|
|
|
|
|
<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"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
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="">
|
|
|
|
|
|
|
|
<TextView
|
2018-11-30 01:06:16 +00:00
|
|
|
android:id="@+id/whatNewtitle"
|
2018-11-05 13:53:07 +00:00
|
|
|
style="@style/BigTitleTextAppearance"
|
|
|
|
android:text="@string/whats_new" />
|
|
|
|
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?dividerColor" />
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<WebView
|
2018-11-30 01:06:16 +00:00
|
|
|
android:id="@+id/webView"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scrollbars="none"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|