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

141 lines
5.3 KiB
XML
Raw Normal View History

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"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-03-25 12:43:43 +00:00
android:paddingBottom="12dp"
2018-07-27 13:07:33 +00:00
android:orientation="vertical">
2019-02-23 17:39:02 +00:00
<LinearLayout
2019-03-18 17:46:52 +00:00
android:layout_width="wrap_content"
2019-02-23 17:39:02 +00:00
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:background="@drawable/material_design_outline"
android:backgroundTint="?dividerColor"
android:gravity="center_vertical"
android:paddingStart="12dp"
android:paddingTop="6dp"
android:paddingEnd="12dp"
android:paddingBottom="6dp"
android:visibility="gone">
2019-02-23 17:39:02 +00:00
<code.name.monkey.retromusic.views.IconImageView
android:id="@+id/sectionIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:layout_marginEnd="12dp"
2019-02-23 17:39:02 +00:00
app:srcCompat="@drawable/ic_person_white_24dp" />
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
android:id="@+id/sectionTitle"
style="@style/SubTitleTextAppearance"
2019-03-18 17:46:52 +00:00
android:padding="0dp"
2019-02-26 17:15:48 +00:00
android:text="@string/for_you" />
2019-02-23 17:39:02 +00:00
</LinearLayout>
2018-07-27 13:07:33 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
2019-03-18 17:46:52 +00:00
android:orientation="horizontal"
android:paddingTop="12dp">
2018-07-27 13:07:33 +00:00
<LinearLayout
android:id="@+id/history"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
2019-02-19 10:38:51 +00:00
<code.name.monkey.retromusic.views.ColorIconsImageView
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="12dp"
2019-02-19 10:38:51 +00:00
app:iconBackgroundColor="@color/md_blue_A700"
app:srcCompat="@drawable/ic_access_time_white_24dp" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatTextView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
2019-05-19 17:10:21 +00:00
app:fontFamily="@font/circular"
2018-07-27 13:07:33 +00:00
android:paddingTop="8dp"
2019-02-23 17:39:02 +00:00
android:text="@string/history" />
2018-07-27 13:07:33 +00:00
</LinearLayout>
<LinearLayout
2018-11-30 01:06:16 +00:00
android:id="@+id/lastAdded"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
2019-02-19 10:38:51 +00:00
<code.name.monkey.retromusic.views.ColorIconsImageView
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="12dp"
2019-02-19 10:38:51 +00:00
app:iconBackgroundColor="@color/md_red_A700"
app:srcCompat="@drawable/ic_library_add_white_24dp" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatTextView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="8dp"
2019-02-23 17:39:02 +00:00
android:text="@string/last_added" />
2018-07-27 13:07:33 +00:00
</LinearLayout>
<LinearLayout
2018-11-30 01:06:16 +00:00
android:id="@+id/topPlayed"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
2019-02-19 10:38:51 +00:00
<code.name.monkey.retromusic.views.ColorIconsImageView
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="12dp"
2019-02-19 10:38:51 +00:00
app:iconBackgroundColor="@color/md_deep_purple_A700"
app:srcCompat="@drawable/ic_trending_up_white_24dp" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatTextView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="8dp"
2019-02-23 17:39:02 +00:00
android:text="@string/my_top_tracks" />
2018-07-27 13:07:33 +00:00
</LinearLayout>
<LinearLayout
2018-11-30 01:06:16 +00:00
android:id="@+id/actionShuffle"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
2019-02-19 10:38:51 +00:00
<code.name.monkey.retromusic.views.ColorIconsImageView
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="12dp"
2019-02-19 10:38:51 +00:00
app:iconBackgroundColor="@color/md_green_A700"
app:srcCompat="@drawable/ic_shuffle_white_24dp" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatTextView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="8dp"
2019-02-23 17:39:02 +00:00
android:text="@string/shuffle" />
2018-07-27 13:07:33 +00:00
</LinearLayout>
</LinearLayout>
2018-11-28 05:37:10 +00:00
</LinearLayout>