replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / service / notification / examples / android / NotiConsumerExample / app / src / main / res / layout / dialog_auth.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         <Button
21             android:layout_height="wrap_content"
22             android:layout_width="wrap_content"
23             android:id="@+id/BtnAuth"
24             android:text="@string/btn_auth"
25             android:onClick="selfDestruct" />
26
27         <EditText
28             android:id="@+id/EditTextAuth"
29             android:layout_width="match_parent"
30             android:layout_height="wrap_content"
31             android:windowSoftInputMode="stateHidden"
32             android:hint="Add Auth Provider Name" />
33     </LinearLayout>
34
35     <LinearLayout
36         android:id="@+id/LinearBody"
37         android:layout_width="match_parent"
38         android:layout_height="wrap_content"
39         android:paddingLeft="5dp"
40         android:paddingRight="5dp"
41         android:orientation="horizontal" >
42
43         <Button
44             android:layout_height="wrap_content"
45             android:layout_width="wrap_content"
46             android:id="@+id/BtnUrl"
47             android:text="@string/btn_url"
48             android:onClick="selfDestruct" />
49
50         <EditText
51             android:id="@+id/EditTextUrl"
52             android:layout_width="match_parent"
53             android:layout_height="wrap_content"
54             android:windowSoftInputMode="stateHidden"
55             android:hint="Add Login Account URL" />
56     </LinearLayout>
57
58     <Button
59         android:layout_gravity="center_vertical|center_horizontal"
60         android:layout_height="wrap_content"
61         android:layout_width="match_parent"
62         android:id="@+id/dialogButtonOK"
63         android:text="@string/btn_ok"
64         />
65     </LinearLayout>
66
67
68 </RelativeLayout>