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

32 lines
1.3 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2018-08-30 14:59:30 +05:30
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-07-27 18:37:33 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent">
2019-04-05 11:19:40 +05:30
<FrameLayout
android:id="@+id/contentFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2018-08-30 14:59:30 +05:30
<com.google.android.material.appbar.AppBarLayout
2018-12-04 21:04:26 +05:30
android:id="@+id/appBarLayout"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2018-08-22 23:24:07 +05:30
android:layout_height="wrap_content"
android:elevation="0dp"
app:elevation="0dp">
2018-07-27 18:37:33 +05:30
<code.name.monkey.appthemehelper.common.views.ATEToolbar
2019-04-05 11:19:40 +05:30
android:id="@+id/toolbar"
style="@style/Toolbar"
app:layout_collapseMode="pin"
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
2019-09-03 21:32:10 +05:30
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal"
tools:title="@string/action_settings" />
2018-08-05 22:05:09 +05:30
2019-04-05 11:19:40 +05:30
</com.google.android.material.appbar.AppBarLayout>
2018-08-30 14:59:30 +05:30
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2018-07-27 18:37:33 +05:30