2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-12-15 15:05:45 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-09-09 00:00:20 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.viewpager.widget.ViewPager
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/viewPager"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2021-12-15 15:05:45 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:overScrollMode="@integer/overScrollMode">
|
2021-09-09 00:00:20 +05:30
|
|
|
|
2021-12-15 15:05:45 +05:30
|
|
|
</androidx.viewpager.widget.ViewPager>
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.lyrics.CoverLrcView
|
|
|
|
android:id="@+id/lyricsView"
|
2021-09-09 00:00:20 +05:30
|
|
|
android:layout_width="match_parent"
|
2021-12-15 15:05:45 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="16dp"
|
2021-09-09 00:00:20 +05:30
|
|
|
android:visibility="gone"
|
2021-12-15 15:05:45 +05:30
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
|
|
app:lrcLabel="@string/no_lyrics_found"
|
|
|
|
app:lrcNormalTextSize="28sp"
|
|
|
|
app:lrcPadding="24dp"
|
|
|
|
app:lrcTextGravity="center"
|
|
|
|
app:lrcTextSize="32sp"
|
|
|
|
app:lrcTimelineColor="@color/transparent"
|
|
|
|
tools:visibility="visible" />
|
2021-09-09 00:00:20 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</FrameLayout>
|