Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / resource-container / examples / android / RCSampleClientApp / app / src / main / res / layout / activity_container_client.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     android:orientation="vertical"
6     android:id="@+id/main"
7     android:weightSum="1">
8
9     <Button
10         android:layout_width="match_parent"
11         android:layout_height="wrap_content"
12         android:onClick="onDiscoverResourceClick"
13         android:text="@string/discover_resource"
14         android:id="@+id/di" />
15
16     <TextView
17         android:id="@+id/log"
18         android:layout_width="fill_parent"
19         android:layout_height="250dp"
20         android:ems="10"
21         android:layout_weight="0.26"
22         android:layout_below="@+id/di"
23         android:layout_alignParentStart="true" />
24
25 </RelativeLayout>