HarshBarash

Untitled

May 5th, 2021
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:tools="http://schemas.android.com/tools"
  4.     android:layout_width="match_parent"
  5.     android:layout_height="match_parent"
  6.     tools:context=".Collection">
  7.  
  8.     <androidx.recyclerview.widget.RecyclerView
  9.         android:id="@+id/recycler_view"
  10.         android:layout_width="match_parent"
  11.         android:layout_height="match_parent"
  12.         tools:ignore="MissingConstraints">
  13.  
  14.     </androidx.recyclerview.widget.RecyclerView>
  15.  
  16.     <com.google.android.material.floatingactionbutton.FloatingActionButton
  17.         android:id="@+id/addBtn"
  18.         android:layout_width="wrap_content"
  19.         android:layout_height="wrap_content"
  20.         android:layout_margin="5dp"
  21.         android:layout_alignParentTop="true"
  22.         android:layout_alignParentEnd="true">
  23.     </com.google.android.material.floatingactionbutton.FloatingActionButton>
  24.  
  25. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment