1<?xml version="1.0" encoding="utf-8"?>
2
3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4              android:orientation="vertical"
5              android:id="@+id/container"
6              android:layout_width="match_parent"
7              android:layout_height="match_parent">
8
9    <Button
10            android:layout_width="wrap_content"
11            android:layout_height="wrap_content"
12            android:text="@string/submit"
13            android:onClick="sendMessage"
14            android:id="@+id/sceneSwitchButton"/>
15    <LinearLayout
16            android:orientation="horizontal"
17            android:layout_width="wrap_content"
18            android:layout_height="wrap_content">
19        <Button
20                android:layout_width="wrap_content"
21                android:layout_height="wrap_content"
22                android:text="@string/button"/>
23        <LinearLayout
24                android:orientation="vertical"
25                android:id="@+id/removingContainer"
26                android:layout_width="wrap_content"
27                android:layout_height="200dip">
28            <Button
29                    android:layout_width="wrap_content"
30                    android:layout_height="wrap_content"
31                    android:text="@string/removingButton"
32                    android:id="@+id/removingButton"/>
33        </LinearLayout>
34        <Button
35                android:layout_width="wrap_content"
36                android:layout_height="wrap_content"
37                android:text="@string/button"/>
38    </LinearLayout>
39</LinearLayout>