e.g.: ``` <RelativeLayout xmlns:android="ht...
# android
p
e.g.:
Copy code
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <include
        layout="@layout/layout_new_record"
        android:layout_width="wrap_content"
        android:layout_height="200dp"
        android:layout_alignBottom="@id/content"
        android:elevation="5dp"
        android:visibility="gone”/>
   <!— other stuff —>
</RelativeLayout>