aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout-land/activity_input_ssid.xml
blob: 9be39e68e0c514e826d4cdff9ffe9da68cc4e9c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/black"
    android:baselineAligned="false"
    android:padding="15dp" >

    <RelativeLayout
        android:id="@+id/left_frame"
        android:layout_width="0dip"
        android:layout_weight=".50"
        android:layout_height="fill_parent"
        android:background="@drawable/top_frame"
        android:padding="5dp"
        android:paddingRight="10dp" >

        <Button
            android:id="@+id/btn_select_hidden_ssid"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:background="@drawable/repwifi_button"
            android:onClick="onBtnSelectClick"
            android:paddingLeft="32dp"
            android:paddingRight="32dp"
            android:text="@string/select_saved_net"
            android:textColor="@color/ThemeLight" />
    </RelativeLayout>

    <RelativeLayout 
        android:id="@+id/button_frame"
		android:layout_toRightOf="@id/left_frame"
		android:layout_width="0dip"
        android:layout_weight=".50"
        android:layout_height="fill_parent"
        android:background="@drawable/top_frame"
		android:padding="15dp" >
         
       <EditText
            android:id="@+id/txt_ssid"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="30dp"
            android:layout_centerInParent="true"
            android:background="@drawable/button_bg"
            android:inputType="text"
            android:maxLines="1"
            android:padding="5dp"
            android:singleLine="true"
            android:textColor="@color/ThemeLight"
            android:textCursorDrawable="@null"
            android:textSize="10pt" />
		
	<TextView
            android:id="@+id/txt_insert_ssid"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@id/txt_ssid"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="10dp"
            android:background="@color/black"
            android:maxLines="1"
            android:text="@string/input_ssid"
            android:textColor="@color/ThemeLight"
            android:textSize="9pt" />

        <LinearLayout
            style="@style/LoginFormContainer"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/txt_ssid"
            android:background="@color/black"
            android:orientation="vertical" >

            <Button
                android:id="@+id/btn_next_hidden_ssid"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
                android:layout_marginTop="16dp"
                android:background="@drawable/repwifi_button"
                android:onClick="onBtnNextClick"
                android:paddingLeft="32dp"
                android:paddingRight="32dp"
                android:text="@string/button_text_next"
                android:textColor="@color/ThemeLight" />
        </LinearLayout>  	        
    </RelativeLayout>

</LinearLayout>