2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout 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"
|
2019-04-04 06:07:55 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="end"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:gravity="end"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-04-04 06:07:55 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/volumeFragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
2019-09-29 02:10:25 +00:00
|
|
|
android:layout_height="0dp"
|
2019-04-04 06:07:55 +00:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:rotation="90"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2019-07-27 05:05:52 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2019-02-26 18:08:07 +00:00
|
|
|
android:id="@+id/playerRepeatButton"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:srcCompat="@drawable/ic_repeat_white_24dp"
|
|
|
|
tools:ignore="MissingPrefix"
|
2019-04-04 06:07:55 +00:00
|
|
|
tools:tint="@color/md_black_1000" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-07-27 05:05:52 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2019-02-26 18:08:07 +00:00
|
|
|
android:id="@+id/playerShuffleButton"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
app:srcCompat="@drawable/ic_shuffle_white_24dp"
|
|
|
|
tools:ignore="MissingPrefix"
|
2019-04-04 06:07:55 +00:00
|
|
|
tools:tint="@color/md_black_1000" />
|
2018-07-27 13:07:33 +00:00
|
|
|
</LinearLayout>
|