Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / resource-container / examples / android / RCSampleServerApp / app / src / main / res / layout / resource_container.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent" >
5
6     <Button
7         android:id="@+id/startContainer"
8         android:layout_width="wrap_content"
9         android:layout_height="wrap_content"
10         android:layout_alignParentLeft="true"
11         android:layout_alignParentTop="true"
12         android:text="Start Container" />
13
14     <ExpandableListView
15         android:id="@+id/lvExp"
16         android:layout_width="match_parent"
17         android:layout_height="300dp"
18         android:layout_below="@id/startContainer" />
19
20     <Button
21         android:id="@+id/listBundles"
22         android:layout_width="wrap_content"
23         android:layout_height="wrap_content"
24         android:layout_alignParentRight="true"
25         android:layout_alignParentTop="true"
26         android:text="List Bundles" />
27
28     <EditText
29         android:id="@+id/log"
30         android:layout_width="fill_parent"
31         android:layout_height="wrap_content"
32         android:layout_alignParentBottom="true"
33         android:layout_alignParentLeft="true"
34         android:layout_below="@id/lvExp"
35         android:editable="false"
36         android:ems="10" />
37
38 </RelativeLayout>