2018-12-08 09:04:15 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-13 02:32:14 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-12-08 09:04:15 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-12-13 02:32:14 +05:30
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2018-12-08 09:04:15 +05:30
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.LyricView
|
|
|
|
android:id="@+id/lyricsView"
|
2018-12-13 02:32:14 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-12-08 09:04:15 +05:30
|
|
|
app:fadeInFadeOut="true"
|
|
|
|
app:highlightColor="@color/md_white_1000"
|
|
|
|
app:hint="No Lyrics"
|
|
|
|
app:hintColor="@color/md_grey_400"
|
|
|
|
app:lineSpace="15dp"
|
|
|
|
app:textAlign="left"
|
2018-12-13 02:32:14 +05:30
|
|
|
app:textSize="18sp" />
|
2018-12-08 09:04:15 +05:30
|
|
|
</LinearLayout>
|