2018-12-08 03:34:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-12 21:02:14 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-12-08 03:34:15 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-16 05:06:08 +00:00
|
|
|
android:background="?attr/colorSurface"
|
2018-12-12 21:02:14 +00:00
|
|
|
android:fadingEdge="vertical"
|
2019-11-12 17:32:30 +00:00
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
2018-12-08 03:34:15 +00:00
|
|
|
|
2019-09-29 08:57:27 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2018-12-08 03:34:15 +00:00
|
|
|
android:id="@+id/offlineLyrics"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="start"
|
|
|
|
android:lineSpacingExtra="3dp"
|
2019-05-22 05:37:59 +00:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="16dp"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:paddingEnd="16dp"
|
2019-05-22 05:37:59 +00:00
|
|
|
android:paddingBottom="128dp"
|
2018-12-08 03:34:15 +00:00
|
|
|
android:text="@string/no_lyrics_found"
|
2019-12-01 15:27:01 +00:00
|
|
|
android:textAppearance="@style/TextViewBody1"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
2018-12-08 03:34:15 +00:00
|
|
|
</ScrollView>
|