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">
|
|
|
|
|
|
|
|
|
2016-09-27 14:57:20 +00:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-09-23 21:22:11 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-09-18 14:56:12 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-09-23 21:22:11 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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:dividerHeight="@dimen/card_divider_space"
|
|
|
|
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.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:baselineAlignBottom="false"
|
|
|
|
android:clickable="true"
|
|
|
|
android:src="@drawable/ic_add"
|
2016-09-27 14:57:20 +00:00
|
|
|
android:layout_gravity="bottom|center_horizontal" />
|
2016-09-23 21:22:11 +00:00
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|
|
|
|
|
|
|
|
|
2016-09-18 14:56:12 +00:00
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|