1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4 <RelativeLayout
5 android:layout_width="fill_parent"
6 android:layout_height="fill_parent">
7
8 <androidx.recyclerview.widget.RecyclerView
9 android:id="@+id/form"
10 android:paddingTop="8dp"
11 android:layout_width="match_parent"
12 android:layout_height="match_parent"
13 android:layout_above="@+id/actions"
14 android:orientation="vertical"
15 app:layoutManager="androidx.recyclerview.widget.GridLayoutManager" />
16
17 <GridView
18 android:id="@+id/actions"
19 android:background="@color/perpy"
20 android:layout_width="match_parent"
21 android:layout_height="wrap_content"
22 android:layout_alignParentStart="true"
23 android:layout_alignParentLeft="true"
24 android:layout_alignParentBottom="true"
25 android:horizontalSpacing="0dp"
26 android:verticalSpacing="0dp"
27 android:numColumns="2" />
28
29 </RelativeLayout>
30</layout>