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-11-09 16:22:01 +00:00
|
|
|
xmlns:fab="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-11-09 16:22:01 +00:00
|
|
|
android:id="@+id/coordinator"
|
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" />
|
|
|
|
|
|
|
|
|
2016-11-09 16:22:01 +00:00
|
|
|
<com.github.clans.fab.FloatingActionMenu
|
|
|
|
android:id="@+id/fabmenu"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:layout_marginRight="120dp"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
app:layout_behavior=".FABBehavior"
|
|
|
|
fab:menu_fab_size="normal"
|
|
|
|
fab:menu_showShadow="true"
|
|
|
|
fab:menu_shadowColor="#66000000"
|
|
|
|
fab:menu_shadowRadius="4dp"
|
|
|
|
fab:menu_shadowXOffset="1dp"
|
|
|
|
fab:menu_shadowYOffset="3dp"
|
|
|
|
fab:menu_colorNormal="#cddc39"
|
|
|
|
fab:menu_colorPressed="#9e9d24"
|
|
|
|
fab:menu_colorRipple="#99FFFFFF"
|
|
|
|
fab:menu_animationDelayPerItem="50"
|
|
|
|
fab:menu_icon="@drawable/ic_add"
|
|
|
|
fab:menu_buttonSpacing="0dp"
|
|
|
|
fab:menu_labels_position="left" >
|
|
|
|
|
|
|
|
<com.github.clans.fab.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:src="@drawable/ic_archive"
|
|
|
|
fab:fab_size="mini"
|
|
|
|
fab:fab_label="@string/fab_flash_zip" />
|
2016-09-23 21:22:11 +00:00
|
|
|
|
2016-11-09 16:22:01 +00:00
|
|
|
</com.github.clans.fab.FloatingActionMenu>
|
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|
2016-09-23 21:22:11 +00:00
|
|
|
|
2016-09-18 14:56:12 +00:00
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|