2019-06-16 18:10:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
~ 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:id="@+id/contentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<include layout="@layout/abs_playlists" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/emptyContainer"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center_horizontal"
|
2019-06-22 17:44:21 +00:00
|
|
|
android:orientation="vertical"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
2019-06-16 18:10:28 +00:00
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.IconImageView
|
|
|
|
android:layout_width="96dp"
|
|
|
|
android:layout_height="96dp"
|
2019-06-29 17:15:31 +00:00
|
|
|
app:srcCompat="@drawable/ic_play_arrow_white_64dp" />
|
2019-06-16 18:10:28 +00:00
|
|
|
|
2019-09-28 17:52:49 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-06-16 18:10:28 +00:00
|
|
|
android:id="@+id/emptyText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2019-06-23 14:47:49 +00:00
|
|
|
android:text="@string/start_play_music"
|
2019-09-28 17:52:49 +00:00
|
|
|
android:textAppearance="@style/TextViewNormal"
|
|
|
|
android:textColor="?colorOnBackground" />
|
2019-06-16 18:10:28 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|