PlayerAndroid/app/src/main/res/layout/fragment_main_activity_recy...

45 lines
1.7 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-12-25 14:58:47 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-08-30 09:29:30 +00:00
android:id="@+id/container"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-12-08 03:34:15 +00:00
android:layout_height="match_parent">
2018-08-30 09:29:30 +00:00
<com.simplecityapps.recyclerview_fastscroll.views.FastScrollRecyclerView
2018-11-30 01:06:16 +00:00
android:id="@+id/recyclerView"
2018-08-30 09:29:30 +00:00
android:layout_width="match_parent"
2019-11-09 17:33:28 +00:00
android:layout_height="wrap_content"
2018-08-30 09:29:30 +00:00
android:clipToPadding="false"
android:layoutAnimation="@anim/layout_animation_fall_down"
2019-11-09 17:33:28 +00:00
android:scrollbars="none"
app:layout_dodgeInsetEdges="bottom" />
2018-07-27 13:07:33 +00:00
2018-12-25 14:58:47 +00:00
<LinearLayout
2018-08-30 09:29:30 +00:00
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
2018-12-25 14:58:47 +00:00
android:gravity="center"
android:orientation="vertical"
2019-09-29 08:57:27 +00:00
android:visibility="gone"
tools:visibility="visible">
2018-07-27 13:07:33 +00:00
2019-09-29 08:57:27 +00:00
<androidx.appcompat.widget.AppCompatImageView
2018-12-25 14:58:47 +00:00
android:layout_width="96dp"
android:layout_height="96dp"
2019-09-29 08:57:27 +00:00
app:srcCompat="@drawable/ic_music_note_off_white_24dp"
app:tint="?colorOnSurface" />
2018-12-25 14:58:47 +00:00
2019-09-29 08:57:27 +00:00
<com.google.android.material.textview.MaterialTextView
2018-12-25 14:58:47 +00:00
android:id="@+id/emptyText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/empty"
android:textAppearance="@style/TextViewNormal"
2019-09-29 08:57:27 +00:00
android:textColor="?colorOnSecondary"
2018-12-25 14:58:47 +00:00
tools:visibility="visible" />
</LinearLayout>
2018-07-27 13:07:33 +00:00
</FrameLayout>