2018-07-27 18:37:33 +05:30
|
|
|
<?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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="end"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/player_repeat_button"
|
|
|
|
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-02-23 23:09:02 +05:30
|
|
|
tools:tint="@color/md_black_1000"
|
|
|
|
android:contentDescription="TODO" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/player_shuffle_button"
|
|
|
|
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-02-23 23:09:02 +05:30
|
|
|
tools:tint="@color/md_black_1000"
|
|
|
|
android:contentDescription="TODO" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|