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

28 lines
1005 B
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-11-28 05:37:10 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
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-08-30 09:29:30 +00:00
android:layout_height="wrap_content">
<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"
android:layout_height="match_parent"
android:clipToPadding="false"
android:layoutAnimation="@anim/layout_animation_fall_down"
android:scrollbars="none" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<TextView
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:fontFamily="sans-serif-light"
android:text="@string/empty"
android:textColor="?android:textColorSecondary"
android:visibility="gone" />
2018-07-27 13:07:33 +00:00
2018-11-28 05:37:10 +00:00
2018-07-27 13:07:33 +00:00
</FrameLayout>