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

41 lines
1.8 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2019-04-05 11:19:40 +05:30
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-11-05 21:22:22 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
2019-10-09 18:01:31 +05:30
xmlns:tools="http://schemas.android.com/tools"
2018-07-27 19:28:24 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
android:transitionName="@string/transition_lyrics">
2019-04-05 11:19:40 +05:30
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
2019-12-01 20:57:01 +05:30
android:layout_height="wrap_content"
android:layout_width="match_parent">
2018-12-25 20:28:47 +05:30
2019-09-28 23:22:49 +05:30
<com.google.android.material.appbar.MaterialToolbar
2019-04-05 11:19:40 +05:30
android:id="@+id/toolbar"
2018-12-25 20:28:47 +05:30
android:layout_width="match_parent"
2019-04-05 11:19:40 +05:30
android:layout_height="wrap_content"
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp"
2019-04-05 11:19:40 +05:30
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp"
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
app:subtitleTextAppearance="@style/TextViewCaption"
2019-04-05 11:19:40 +05:30
app:titleMargin="0dp"
app:titleMarginStart="0dp"
app:titleTextAppearance="@style/TextViewSubtitle1"
2019-10-09 18:01:31 +05:30
tools:subtitle="@tools:sample/full_names"
tools:title="@tools:sample/full_names" />
2019-04-05 11:19:40 +05:30
</com.google.android.material.appbar.AppBarLayout>
2018-11-05 21:22:22 +05:30
2019-10-09 18:01:31 +05:30
<code.name.monkey.retromusic.lyrics.LrcView
android:id="@+id/lyricsView"
app:lrcLabel="@string/no_lyrics_found"
app:lrcPadding="16dp"
app:lrcTextGravity="left"
2019-10-09 18:01:31 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2019-04-05 11:19:40 +05:30
</androidx.coordinatorlayout.widget.CoordinatorLayout>