// Родительский вид
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/back4">
// Относительный макет Дочерний для ScrollView
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="40dp">
// Сеточный вид с родительским относительным макетом. Вид сетки не позволяет плавающей кнопке выравнивать нижнюю часть
<GridView
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:verticalSpacing="50dp">
</GridView>
// Плавающая кнопка добавляется к нижней части экрана
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/addNew"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/gridview"
android:layout_alignParentEnd="true"
android:src="@drawable/addbutton"/>
// Конец относительного макета
</RelativeLayout>
// Конец прокрутки