Add synchronized lyrics support (only LRC format at the moment)
This commit is contained in:
parent
1c55d56093
commit
dbb6250c06
6 changed files with 184 additions and 1 deletions
|
|
@ -10,6 +10,41 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/player_lyrics"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="bottom"
|
||||
android:background="@drawable/shadow_up"
|
||||
android:padding="16dp"
|
||||
android:clipToPadding="false"
|
||||
android:visibility="gone">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/player_lyrics_line1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:textAlignment="center"
|
||||
android:textSize="22sp"
|
||||
android:textColor="@color/md_white_1000"
|
||||
android:shadowColor="@color/md_black_1000"
|
||||
android:shadowRadius="4"
|
||||
android:visibility="gone" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/player_lyrics_line2"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:textAlignment="center"
|
||||
android:textSize="22sp"
|
||||
android:textColor="@color/md_white_1000"
|
||||
android:shadowColor="@color/md_black_1000"
|
||||
android:shadowRadius="4" />
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
<android.support.v7.widget.AppCompatImageView
|
||||
android:id="@+id/player_favorite_icon"
|
||||
android:layout_width="match_parent"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue