RetroMusicPlayer/app/src/main/res/layout/fragment_player_album_cover.xml

46 lines
1.9 KiB
XML
Raw Normal View History

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"
xmlns:app="http://schemas.android.com/apk/res-auto"
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"
android:layout_height="match_parent"
android:overScrollMode="@integer/overScrollMode">
</androidx.viewpager.widget.ViewPager>
2022-01-04 12:23:36 +05:30
<androidx.fragment.app.FragmentContainerView
android:id="@+id/cover_lyrics"
2022-05-07 07:18:35 +05:30
android:name="code.name.monkey.retromusic.fragments.player.CoverLyricsFragment"
2022-01-04 12:23:36 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-01-04 12:23:36 +05:30
android:layout_gravity="center_vertical" />
<com.bosphere.fadingedgelayout.FadingEdgeLayout
android:id="@+id/fading_edge_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:fel_edge="top|bottom"
2022-01-04 14:26:22 +05:30
app:fel_size_bottom="100dp"
app:fel_size_top="100dp">
<code.name.monkey.retromusic.lyrics.CoverLrcView
android:id="@+id/lyricsView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="16dp"
android:visibility="gone"
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" />
</com.bosphere.fadingedgelayout.FadingEdgeLayout>
2018-07-27 18:37:33 +05:30
</FrameLayout>