PlayerAndroid/app/src/main/res/layout/fragment_synced.xml

14 lines
618 B
XML
Raw Normal View History

2018-12-08 03:34:15 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-12-12 21:02:14 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-12-08 03:34:15 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-12-16 05:06:08 +00:00
android:background="?attr/colorSurface"
2018-12-12 21:02:14 +00:00
android:orientation="vertical"
2019-11-12 17:32:30 +00:00
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
2018-12-08 03:34:15 +00:00
2019-04-15 02:44:48 +00:00
<code.name.monkey.retromusic.lyrics.LrcView
2018-12-08 03:34:15 +00:00
android:id="@+id/lyricsView"
2018-12-12 21:02:14 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent" />
2018-12-08 03:34:15 +00:00
</LinearLayout>