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"
|
2018-12-12 21:02:14 +00:00
|
|
|
android:fadingEdge="vertical"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2018-12-08 03:34:15 +00:00
|
|
|
|
2019-09-29 08:57:27 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:textColor="?colorOnSecondary"
|
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-09-02 14:51:53 +00:00
|
|
|
android:textAppearance="@style/TextViewBody1" />
|
2018-12-08 03:34:15 +00:00
|
|
|
</ScrollView>
|