PlayerAndroid/app/src/main/res/layout/fragment_lyrics.xml

22 lines
912 B
XML
Raw Normal View History

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"
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"
android:textAppearance="@style/TextViewBody1" />
2018-12-08 03:34:15 +00:00
</ScrollView>