Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / android / CHIPTool / app / src / main / res / layout / enter_wifi_network_fragment.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:orientation="vertical" android:layout_width="match_parent"
4     android:layout_height="match_parent">
5
6     <TextView
7         android:id="@+id/titleTv"
8         android:layout_width="match_parent"
9         android:layout_height="wrap_content"
10         android:layout_alignParentTop="true"
11         android:text="@string/enter_wifi_credentials_title"
12         android:padding="16dp"
13         android:textSize="20sp"/>
14
15     <EditText
16         android:id="@+id/ssidEd"
17         android:layout_width="match_parent"
18         android:layout_height="wrap_content"
19         android:layout_margin="16dp"
20         android:layout_below="@id/titleTv"
21         android:inputType="text"
22         android:textSize="20sp"
23         android:hint="@string/enter_wifi_ssid_hint"/>
24
25     <EditText
26         android:id="@+id/pwdEd"
27         android:layout_width="match_parent"
28         android:layout_height="wrap_content"
29         android:layout_margin="16dp"
30         android:layout_below="@id/ssidEd"
31         android:inputType="text"
32         android:textSize="20sp"
33         android:hint="@string/enter_wifi_password_hint"/>
34
35     <Button
36         android:id="@+id/saveNetworkBtn"
37         android:layout_width="wrap_content"
38         android:layout_height="wrap_content"
39         android:layout_alignParentBottom="true"
40         android:layout_alignParentEnd="true"
41         android:padding="16dp"
42         android:layout_margin="16dp"
43         android:text="@string/enter_wifi_save_network_btn"/>
44
45 </RelativeLayout>