|
@@ -0,0 +1,58 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<androidx.constraintlayout.widget.ConstraintLayout 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="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/player_control_type"
|
|
|
+ android:layout_width="17dp"
|
|
|
+ android:layout_height="17dp"
|
|
|
+ android:src="@mipmap/player_loop"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/player_control_prev"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/player_control_prev"
|
|
|
+ android:layout_width="17dp"
|
|
|
+ android:layout_height="17dp"
|
|
|
+ android:src="@mipmap/player_prev"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toRightOf="@id/player_control_type"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/player_control_button"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/player_control_button"
|
|
|
+ android:layout_width="62dp"
|
|
|
+ android:layout_height="62dp"
|
|
|
+ android:src="@mipmap/player_pause"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toRightOf="@id/player_control_prev"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/player_control_next"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/player_control_next"
|
|
|
+ android:layout_width="17dp"
|
|
|
+ android:layout_height="17dp"
|
|
|
+ android:src="@mipmap/player_loop"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toRightOf="@id/player_control_button"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/player_control_list"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/player_control_list"
|
|
|
+ android:layout_width="17dp"
|
|
|
+ android:layout_height="17dp"
|
|
|
+ android:src="@mipmap/player_list"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toRightOf="@id/player_control_next"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|