replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / service / notification / examples / android / NotiProviderExample / app / src / main / res / layout / dialog_entry.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="fill_parent"
4     android:layout_height="fill_parent" >
5
6     <LinearLayout
7         android:layout_width="match_parent"
8         android:layout_height="wrap_content"
9         android:paddingLeft="1dp"
10         android:paddingRight="1dp"
11         android:orientation="vertical" >
12
13         <LinearLayout
14             android:layout_width="match_parent"
15             android:layout_height="wrap_content"
16             android:paddingLeft="5dp"
17             android:paddingRight="5dp"
18             android:orientation="horizontal" >
19
20             <EditText
21                 android:id="@+id/EditTextEntry"
22                 android:layout_width="match_parent"
23                 android:layout_height="wrap_content"
24                 android:windowSoftInputMode="stateHidden"
25                 android:hint="Add Required Details" />
26         </LinearLayout>
27
28
29         <Button
30             android:layout_gravity="center_vertical|center_horizontal"
31             android:layout_height="wrap_content"
32             android:layout_width="match_parent"
33             android:id="@+id/entryButtonOK"
34             android:text="@string/btn_ok"
35             />
36     </LinearLayout>
37
38
39 </RelativeLayout>