2016-08-21 13:29:42 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-09-18 14:56:12 +00:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-09-01 15:42:26 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-09-18 14:56:12 +00:00
|
|
|
android:id="@+id/swipeRefreshLayout"
|
2016-09-01 15:42:26 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-09-18 14:56:12 +00:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginTop="?attr/actionBarSize"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingBottom="60dip"
|
|
|
|
app:layoutManager="android.support.v7.widget.LinearLayoutManager"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/empty_rv"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/no_modules_found"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:textStyle="italic"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|