134 lines
No EOL
6 KiB
XML
134 lines
No EOL
6 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
android:tint="#80000000" />
|
|
|
|
<code.name.monkey.retromusic.views.FitSystemWindowsLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<com.google.android.material.bottomappbar.BottomAppBar
|
|
android:id="@+id/bottom_app_bar"
|
|
style="@style/Widget.MaterialComponents.BottomAppBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:elevation="8dp"
|
|
app:backgroundTint="@color/md_red_500"
|
|
app:contentInsetLeft="0dp"
|
|
app:fabAlignmentMode="end"
|
|
app:fabCradleRoundedCornerRadius="8dp"
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
|
|
app:title="@string/lyrics"
|
|
app:titleMargin="0dp"
|
|
app:titleMarginStart="0dp" />
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ic_edit_white_24dp"
|
|
app:layout_anchor="@id/bottom_app_bar" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="52dp"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<RadioGroup
|
|
android:id="@+id/actions"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="12dp"
|
|
android:paddingEnd="12dp">
|
|
|
|
<RadioButton
|
|
android:id="@+id/synced_lyrics"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="4dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/toggle_outline_buttons"
|
|
android:button="@null"
|
|
android:gravity="center"
|
|
android:padding="12dp"
|
|
android:text="@string/synced_lyrics"
|
|
android:textAppearance="@style/Base.TextAppearance.AppCompat.Caption"
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/normal_lyrics"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="4dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/toggle_outline_buttons"
|
|
android:button="@null"
|
|
android:gravity="center"
|
|
android:padding="12dp"
|
|
android:text="@string/normal_lyrics"
|
|
android:textAppearance="@style/Base.TextAppearance.AppCompat.Caption"
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
</RadioGroup>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fadingEdge="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/offline_lyrics"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="start"
|
|
android:lineSpacingExtra="3dp"
|
|
android:paddingStart="16dp"
|
|
android:paddingEnd="16dp"
|
|
android:paddingBottom="16dp"
|
|
android:text="@string/no_lyrics_found"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
android:textColor="@color/md_white_1000"
|
|
android:visibility="gone" />
|
|
</ScrollView>
|
|
|
|
<code.name.monkey.retromusic.views.LyricView
|
|
android:id="@+id/lyrics_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
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"
|
|
app:textSize="18sp" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
</code.name.monkey.retromusic.views.FitSystemWindowsLayout>
|
|
</FrameLayout> |