RetroMusicPlayer/app/src/main/res/layout/abs_playlists.xml

64 lines
2.7 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2019-09-28 23:22:49 +05:30
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-07-27 18:37:33 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="12dp">
2018-07-27 18:37:33 +05:30
2021-12-12 20:58:58 +05:30
<com.google.android.material.button.MaterialButton
2019-09-28 23:22:49 +05:30
android:id="@+id/history"
2021-12-12 20:58:58 +05:30
style="@style/HomeActionButton"
2019-10-01 22:50:32 +05:30
android:layout_width="0dp"
2019-06-04 09:30:11 +05:30
android:layout_height="wrap_content"
2021-12-12 20:58:58 +05:30
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:text="@string/history"
app:icon="@drawable/ic_history"
2019-10-01 22:50:32 +05:30
app:layout_constraintEnd_toStartOf="@+id/lastAdded"
app:layout_constraintHorizontal_bias="0.5"
2019-09-28 23:22:49 +05:30
app:layout_constraintStart_toStartOf="parent"
2021-12-12 20:58:58 +05:30
app:layout_constraintTop_toTopOf="parent" />
2019-09-28 23:22:49 +05:30
2021-12-12 20:58:58 +05:30
<com.google.android.material.button.MaterialButton
2019-09-28 23:22:49 +05:30
android:id="@+id/lastAdded"
2021-12-12 20:58:58 +05:30
style="@style/HomeActionButton"
2019-10-01 22:50:32 +05:30
android:layout_width="0dp"
2018-07-27 18:37:33 +05:30
android:layout_height="wrap_content"
2021-12-12 20:58:58 +05:30
android:layout_marginEnd="16dp"
android:text="@string/last_added"
app:icon="@drawable/ic_library_add"
app:layout_constraintEnd_toEndOf="parent"
2019-09-28 23:22:49 +05:30
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/history"
2021-12-12 20:58:58 +05:30
app:layout_constraintTop_toTopOf="@+id/history" />
2019-09-28 23:22:49 +05:30
2021-12-12 20:58:58 +05:30
<com.google.android.material.button.MaterialButton
2019-09-28 23:22:49 +05:30
android:id="@+id/topPlayed"
2021-12-12 20:58:58 +05:30
style="@style/HomeActionButton"
2019-10-01 22:50:32 +05:30
android:layout_width="0dp"
2019-09-28 23:22:49 +05:30
android:layout_height="wrap_content"
2021-12-12 20:58:58 +05:30
android:layout_marginTop="8dp"
android:layout_marginEnd="16dp"
android:text="@string/my_top_tracks"
app:icon="@drawable/ic_trending_up"
2019-09-28 23:22:49 +05:30
app:layout_constraintEnd_toStartOf="@+id/actionShuffle"
app:layout_constraintHorizontal_bias="0.5"
2021-12-12 20:58:58 +05:30
app:layout_constraintStart_toStartOf="@+id/history"
app:layout_constraintTop_toBottomOf="@+id/history" />
2019-09-28 23:22:49 +05:30
2021-12-12 20:58:58 +05:30
<com.google.android.material.button.MaterialButton
2019-09-28 23:22:49 +05:30
android:id="@+id/actionShuffle"
2021-12-12 20:58:58 +05:30
style="@style/HomeActionButton"
2019-10-01 22:50:32 +05:30
android:layout_width="0dp"
2019-09-28 23:22:49 +05:30
android:layout_height="wrap_content"
2021-12-12 20:58:58 +05:30
android:layout_marginTop="8dp"
android:text="@string/shuffle"
app:icon="@drawable/ic_shuffle"
app:layout_constraintEnd_toEndOf="@+id/lastAdded"
2019-10-01 22:50:32 +05:30
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/topPlayed"
2021-12-12 20:58:58 +05:30
app:layout_constraintTop_toBottomOf="@+id/lastAdded" />
2019-09-28 23:22:49 +05:30
</androidx.constraintlayout.widget.ConstraintLayout>