2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-08 03:34:15 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-11-05 15:52:22 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-07-27 13:58:24 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-05 15:52:22 +00:00
|
|
|
android:layout_height="match_parent">
|
2018-07-27 13:58:24 +00:00
|
|
|
|
2018-12-08 03:34:15 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appBarLayout"
|
2018-08-01 06:51:27 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-12-08 03:34:15 +00:00
|
|
|
android:layout_height="wrap_content">
|
2018-11-05 15:52:22 +00:00
|
|
|
|
2018-12-08 03:34:15 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
2018-11-05 15:52:22 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-12-08 03:34:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp"
|
|
|
|
app:contentInsetLeft="0dp"
|
|
|
|
app:contentInsetStart="0dp"
|
|
|
|
app:contentInsetStartWithNavigation="0dp"
|
2018-12-12 21:02:14 +00:00
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
2018-12-08 03:34:15 +00:00
|
|
|
app:subtitleTextAppearance="@style/TextAppearance.AppCompat.Caption"
|
|
|
|
app:titleMargin="0dp"
|
|
|
|
app:titleMarginStart="0dp"
|
|
|
|
app:titleTextAppearance="@style/TextAppearance.AppCompat.Subhead" />
|
|
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
android:id="@+id/tabs"
|
2018-12-09 06:38:34 +00:00
|
|
|
style="@style/TabLayoutStyle"
|
2018-12-08 03:34:15 +00:00
|
|
|
android:background="@android:color/transparent"
|
2018-12-09 06:38:34 +00:00
|
|
|
app:tabTextAppearance="@style/TabTextAppearance">
|
2018-12-08 03:34:15 +00:00
|
|
|
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
2018-11-05 15:52:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-12-08 03:34:15 +00:00
|
|
|
android:text="@string/synced_lyrics" />
|
2018-11-05 15:52:22 +00:00
|
|
|
|
2018-12-08 03:34:15 +00:00
|
|
|
<com.google.android.material.tabs.TabItem
|
2018-11-05 15:52:22 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-12-08 03:34:15 +00:00
|
|
|
android:text="@string/normal_lyrics" />
|
|
|
|
</com.google.android.material.tabs.TabLayout>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-11-05 15:52:22 +00:00
|
|
|
|
2018-12-08 03:34:15 +00:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
|
|
android:id="@+id/viewPager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2018-11-05 15:52:22 +00:00
|
|
|
|
|
|
|
|
2018-12-08 03:34:15 +00:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_margin="14dp"
|
|
|
|
android:src="@drawable/ic_edit_white_24dp"
|
|
|
|
app:useCompatPadding="true" />
|
2018-11-05 15:52:22 +00:00
|
|
|
|
2018-12-08 03:34:15 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|