aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_input_password.xml
blob: a024879a8073f709f46dd47b5312a14a9d1da881 (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
<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".InputPasswordActivity" >

    
      
    <ScrollView
        android:id="@+id/login_form"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background = "@color/black" >

        <LinearLayout
            style="@style/LoginFormContainer"
            android:orientation="vertical"
            android:background="@color/black"            
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >
            
            <TextView 
                android:id="@+id/txt_insert_pass"
                android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:textCursorDrawable="@null"
	    		android:textColor="@color/ThemeLight"
	    		android:textSize="10pt"
	    		android:layout_marginBottom="10dp"
	    		android:background="@color/black"
	    		android:maxLines = "10"
	    		android:text="@string/insert_nets_password" />
           
            <EditText
                android:id="@+id/txt_password"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:inputType="textPassword"
                android:textColor="@color/ThemeLight"
                android:textSize="10pt"
                android:maxLines="1"
                android:singleLine="true" />
            
            <CheckBox 
                android:id="@+id/chk_show_pass"
                android:textColor="@color/ThemeLight"
                android:text="@string/show_password"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            
            <Button
                android:id="@+id/sign_in_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@color/ThemeDark"
                android:textColor="@color/ThemeLight"
                android:layout_gravity="right"
                android:layout_marginTop="16dp"
                android:paddingLeft="32dp"
                android:paddingRight="32dp"
                android:text="@string/button_text_next"
                android:onClick="onBtnNextClick" />  
                              
        </LinearLayout>
    </ScrollView>

</merge>