<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  >

  <SurfaceView
    android:id="@+id/surface_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    ></SurfaceView>
  <Button
    android:id="@+id/surface_close_btn"
    android:background="@drawable/button_close"
    android:layout_width="20dp"
    android:layout_height="20dp"
    android:layout_marginTop="4dp"
    android:layout_marginStart="4dp" />
  <Button
    android:id="@+id/new_window_btn"
    android:background="@drawable/new_window"
    android:layout_width="16dp"
    android:layout_height="16dp"
    android:layout_marginTop="4dp"
    android:layout_marginEnd="4dp"
    android:layout_alignParentTop="true"
    android:layout_alignParentEnd="true" />
</RelativeLayout>