Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / resource-encapsulation / examples / android / RESampleServerApp / app / src / main / res / layout / activity_simple_server.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout 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
7     <Button
8         android:layout_width="match_parent"
9         android:layout_height="wrap_content"
10         android:onClick="onStartServerClick"
11         android:text="@string/start_server" />
12
13     <Button
14         android:id="@+id/btn_set_temp"
15         android:layout_width="match_parent"
16         android:layout_height="wrap_content"
17         android:enabled="false"
18         android:onClick="onSetTempClick"
19         android:text="@string/set_temp" />
20
21     <TextView
22         android:id="@+id/text_log"
23         android:layout_width="fill_parent"
24         android:layout_height="250dp"
25         android:layout_marginTop="15dp"
26         android:ems="10" />
27
28 </LinearLayout>