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"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
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"
|
|
|
|
app:title="">
|
|
|
|
|
2019-04-05 16:15:09 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-12-08 09:04:15 +05:30
|
|
|
android:id="@+id/bannerTitle"
|
2019-04-05 16:15:09 +05:30
|
|
|
style="@style/BigTitleTextAppearanceToolbar"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:text="@string/whats_new" />
|
|
|
|
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2019-03-25 18:13:43 +05:30
|
|
|
<code.name.monkey.retromusic.views.LollipopFixedWebView
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/webView"
|
2018-11-05 19:23:07 +05:30
|
|
|
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>
|