2019-12-01 15:27:01 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2019-06-16 18:10:28 +00:00
|
|
|
~ Copyright (c) 2019 Hemanth Savarala.
|
|
|
|
~
|
|
|
|
~ Licensed under the GNU General Public License v3
|
|
|
|
~
|
|
|
|
~ This is free software: you can redistribute it and/or modify it under
|
|
|
|
~ the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation either version 3 of the License, or (at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
~ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
~ See the GNU General Public License for more details.
|
|
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-06-23 14:47:49 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-06-16 18:10:28 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-10-09 12:52:02 +00:00
|
|
|
android:layout_height="match_parent"
|
2019-12-01 15:27:01 +00:00
|
|
|
android:background="?attr/colorSurface"
|
2019-06-16 18:10:28 +00:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2021-09-08 18:30:20 +00:00
|
|
|
<include
|
|
|
|
android:id="@+id/abs_playlists"
|
|
|
|
layout="@layout/abs_playlists" />
|
2019-06-16 18:10:28 +00:00
|
|
|
|
2019-10-09 12:52:02 +00:00
|
|
|
<FrameLayout
|
2019-06-16 18:10:28 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-10-09 12:52:02 +00:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
2019-06-16 18:10:28 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2019-12-01 15:27:01 +00:00
|
|
|
android:layout_margin="24dp"
|
2019-10-09 12:52:02 +00:00
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
2019-10-26 13:46:01 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-10-09 12:52:02 +00:00
|
|
|
android:layout_width="96dp"
|
|
|
|
android:layout_height="96dp"
|
2019-12-01 15:27:01 +00:00
|
|
|
app:srcCompat="@drawable/ic_play_arrow_white_64dp"
|
2019-12-05 18:18:54 +00:00
|
|
|
app:tint="?attr/colorControlNormal" />
|
2019-10-09 12:52:02 +00:00
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/emptyText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/start_play_music"
|
|
|
|
android:textAppearance="@style/TextViewNormal"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
2019-10-09 12:52:02 +00:00
|
|
|
</LinearLayout>
|
2020-08-21 17:07:10 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
2021-11-21 10:33:00 +00:00
|
|
|
tools:itemCount="10"
|
2020-08-21 17:07:10 +00:00
|
|
|
tools:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
|
|
|
|
tools:listitem="@layout/item_album_card"
|
|
|
|
tools:spanCount="3" />
|
|
|
|
|
|
|
|
<Space
|
|
|
|
android:layout_width="match_parent"
|
2021-10-03 13:58:05 +00:00
|
|
|
android:layout_height="@dimen/mini_player_height_expanded" />
|
2020-08-21 17:07:10 +00:00
|
|
|
</LinearLayout>
|
2019-10-09 12:52:02 +00:00
|
|
|
</FrameLayout>
|
2019-06-16 18:10:28 +00:00
|
|
|
</LinearLayout>
|