2018-11-05 13:53:07 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/playback_controls"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:ignore="MissingPrefix">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/progress_container_height"
|
|
|
|
android:background="@color/twenty_percent_black_overlay">
|
|
|
|
|
2018-12-05 04:29:55 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
|
|
android:id="@+id/songCurrentProgress"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:gravity="center_vertical|left|end"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:singleLine="true"
|
2019-07-31 09:09:29 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Overline"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry" />
|
|
|
|
|
2018-12-05 04:29:55 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
|
|
android:id="@+id/songTotalTime"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:gravity="center_vertical|right|end"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:singleLine="true"
|
2019-07-31 09:09:29 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Overline"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry" />
|
|
|
|
|
2019-07-27 05:05:52 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
2018-12-05 04:29:55 +00:00
|
|
|
android:id="@+id/progressSlider"
|
2018-11-05 13:53:07 +00:00
|
|
|
style="@style/MusicProgressSlider"
|
|
|
|
android:layout_height="match_parent"
|
2018-12-05 04:29:55 +00:00
|
|
|
android:layout_toLeftOf="@id/songTotalTime"
|
|
|
|
android:layout_toRightOf="@id/songCurrentProgress"
|
2018-11-05 13:53:07 +00:00
|
|
|
tools:ignore="RtlHardcoded,UnusedAttribute" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="8dp">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:freezesText="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:textColor="?android:attr/textColorSecondary" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-12-05 04:29:55 +00:00
|
|
|
<include layout="@layout/media_button" />
|
2018-11-05 13:53:07 +00:00
|
|
|
|
2018-12-05 04:29:55 +00:00
|
|
|
<include layout="@layout/volume_controls" />
|
2018-11-05 13:53:07 +00:00
|
|
|
</LinearLayout>
|