mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-23 10:25:20 +01:00
16 lines
619 B
XML
16 lines
619 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:fadingEdge="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/offlineLyrics"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="start"
|
||
|
android:lineSpacingExtra="3dp"
|
||
|
android:padding="16dp"
|
||
|
android:text="@string/no_lyrics_found"
|
||
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline6" />
|
||
|
</ScrollView>
|