<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2015 Square, Inc.
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="16dp"
    >

  <TextView
      android:id="@+id/helper_text"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginBottom="16dp"
      android:text="@string/helper_text"
      />
  <Button
      android:id="@+id/recreate_activity_button"
      android:layout_width="wrap_content"
      android:layout_gravity="center"
      android:layout_height="wrap_content"
      android:text="Recreate Activity"
      />
  <Button
      android:id="@+id/leak_activity_button"
      android:layout_width="wrap_content"
      android:layout_gravity="center"
      android:layout_height="wrap_content"
      android:text="Leak Activity"
      />
  <Button
      android:id="@+id/show_dialog_button"
      android:layout_width="wrap_content"
      android:layout_gravity="center"
      android:layout_height="wrap_content"
      android:text="Show dialog"
      />
  <Button
      android:id="@+id/start_service_button"
      android:layout_width="wrap_content"
      android:layout_gravity="center"
      android:layout_height="wrap_content"
      android:text="@string/start_service_button_text"
      />
  <Button
      android:id="@+id/leak_receiver_button"
      android:layout_width="wrap_content"
      android:layout_gravity="center"
      android:layout_height="wrap_content"
      android:text="Create &amp; leak Receiver"
      />
  <Button
    android:id="@+id/message_leak_button"
    android:layout_width="wrap_content"
    android:layout_gravity="center"
    android:layout_height="wrap_content"
    android:text="Create Message leak"
    />
  <Button
    android:id="@+id/infinite_animator"
    android:layout_width="wrap_content"
    android:layout_gravity="center"
    android:layout_height="wrap_content"
    android:text="Create animator leak"
    />
  <Button
    android:id="@+id/finish_activity"
    android:layout_width="wrap_content"
    android:layout_gravity="center"
    android:layout_height="wrap_content"
    android:text="Finish"
    />

</LinearLayout>
