Subversion Repository Public Repository

Nextrek

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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="@dimen/header_height"
            android:id="@+id/imageView2"
            android:scaleType="fitCenter"
            android:src="@drawable/screen1"
            android:background="#3cdbff" />

        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="@dimen/space_16dp"
                android:layout_marginBottom="@dimen/space_16dp"
                android:layout_weight="3">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/space_48dp">
                    <Button
                        android:id="@+id/facebook_login_button"
                        android:stateListAnimator="@null"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" />
                    <ImageView
                        android:src="@drawable/facebook"
                        android:background="@drawable/facebook_bordered_rectangle"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" />
                </RelativeLayout>

                <LinearLayout
                    android:id="@+id/or_divider"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal"
                    android:layout_marginTop="10dp"
                    android:weightSum="4">
                    <View
                        android:background="@color/md_grey_500"
                        android:layout_gravity="center_vertical"
                        android:layout_width="match_parent"
                        android:layout_height="1dp"
                        android:layout_marginRight="5dp"
                        android:layout_weight="2"/>
                    <TextView
                        android:text="@string/login_o_divider"
                        android:textColor="@color/md_grey_500"
                        android:layout_width="wrap_content"
                        android:gravity="center_horizontal"
                        android:layout_height="wrap_content"/>
                    <View
                        android:background="@color/md_grey_500"
                        android:layout_gravity="center_vertical"
                        android:layout_width="match_parent"
                        android:layout_marginLeft="5dp"
                        android:layout_height="1dp"
                        android:layout_weight="2"/>
                </LinearLayout>


                <android.support.design.widget.TextInputLayout
                    android:id="@+id/to_text_input_layout"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">
                    <EditText
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:id="@+id/editText2"
                        android:hint="@string/username"
                        android:inputType="text"
                        android:maxLength="100" />
                </android.support.design.widget.TextInputLayout>

                <android.support.design.widget.TextInputLayout
                    android:id="@+id/to_text_input_layout"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">
                    <EditText
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:id="@+id/editText3"
                        android:hint="@string/password"
                        android:inputType="textPassword"
                        android:maxLength="20" />
                </android.support.design.widget.TextInputLayout>



                <Button
                    android:id="@+id/button2"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:onClick="loginclick"
                    android:text="@string/login"
                    android:layout_marginTop="@dimen/space_16dp" />

                <LinearLayout
                    android:orientation="horizontal"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:layout_marginLeft="40dp"
                    android:layout_marginRight="40dp"
                    android:layout_marginTop="10dp">

                    <Button
                        android:id="@+id/button4"
                        android:layout_width="wrap_content"
                        android:visibility="gone"
                        android:layout_height="50dp" />


                </LinearLayout>
                <Button
                    android:id="@+id/button3"
                    android:layout_marginTop="@dimen/space_16dp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:onClick="btnregister"
                    android:text="@string/btnRegistrazione"
                    style="@style/BorderlessButton"
                    android:layout_gravity="center_horizontal" />

                <Button
                    android:id="@+id/button6"
                    android:layout_width="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:layout_height="wrap_content"
                    style="@style/BorderlessButton"
                    android:text="@string/ignora_btn"
                    android:onClick="ignoraclick"/>

            </LinearLayout>

        </ScrollView>
    </LinearLayout>

</RelativeLayout>

Commits for Nextrek/Android/SmartCharging/SmartCharging/app/src/main/res/layout/activity_login2.xml

Diff revisions: vs.
Revision Author Commited Message
778 Diff Diff MStefanelli picture MStefanelli Wed 23 Sep, 2015 15:44:08 +0000

me

661 Diff Diff MStefanelli picture MStefanelli Thu 03 Sep, 2015 13:11:57 +0000

me

658 Diff Diff MStefanelli picture MStefanelli Thu 03 Sep, 2015 07:07:48 +0000

Fix

647 Diff Diff MStefanelli picture MStefanelli Wed 02 Sep, 2015 08:00:13 +0000

me

623 Diff Diff MStefanelli picture MStefanelli Tue 01 Sep, 2015 07:21:41 +0000

me

611 Diff Diff MStefanelli picture MStefanelli Fri 28 Aug, 2015 16:19:11 +0000

me

599 Diff Diff MStefanelli picture MStefanelli Fri 28 Aug, 2015 07:16:44 +0000
547 Diff Diff MStefanelli picture MStefanelli Tue 25 Aug, 2015 10:11:57 +0000

me

522 Diff Diff MStefanelli picture MStefanelli Fri 21 Aug, 2015 16:02:26 +0000
521 MStefanelli picture MStefanelli Fri 21 Aug, 2015 12:38:59 +0000