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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/scrollView3">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="@dimen/header_height"
                android:id="@+id/imageView5"
                android:src="@drawable/screen1"
                android:background="#3cdbff" />

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



                <LinearLayout
                    android:orientation="vertical"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/linearlocal"
                    android:visibility="gone" >

                    <!-- NOME LOCALE-->
                    <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:hint="@string/nome_locale"
                            android:id="@+id/editText13"
                            android:singleLine="true"
                            android:maxLength="100" />
                    </android.support.design.widget.TextInputLayout>

                    <!-- Numero Telefono -->
                    <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:inputType="number"
                            android:hint="@string/num_telefono"
                            android:ems="10"
                            android:id="@+id/editText178"
                            android:singleLine="true"
                            android:maxLength="10" />
                    </android.support.design.widget.TextInputLayout>

                    <!--Email-->
                    <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:hint="@string/email"
                            android:id="@+id/editText17"
                            android:singleLine="true"
                            android:maxLength="100" />
                    </android.support.design.widget.TextInputLayout>

                    <!-- SITO WBE-->
                    <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/editText14"
                            android:hint="@string/sito_web"
                            android:singleLine="true"
                            android:maxLength="100" />
                    </android.support.design.widget.TextInputLayout>

                    <!-- DESCRIZIONE -->
                    <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/editText16"
                            android:hint="@string/descrizione_locale"
                            android:inputType="textMultiLine"
                            android:maxLength="4000" />
                    </android.support.design.widget.TextInputLayout>

                    <!-- PUNTI RICARICA -->
                    <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/punti_ricarica"
                            android:hint="@string/punti_ricarica"
                            android:inputType="number"
                            android:maxLength="4" />
                    </android.support.design.widget.TextInputLayout>

                    <fr.ganfra.materialspinner.MaterialSpinner
                        android:layout_marginTop="10dp"
                        android:layout_width="match_parent"
                        app:ms_hint="@string/type_spinner_prompt"
                        app:ms_multiline="false"
                        android:layout_height="wrap_content"
                        android:id="@+id/spinner3"/>

                    <TextView
                        android:text="@string/add_image_label"
                        android:layout_width="wrap_content"
                        android:layout_marginLeft="@dimen/space_8dp"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="10dp"/>
                    <HorizontalScrollView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:id="@+id/horizontalScrollView4"
                        android:layout_marginLeft="@dimen/space_8dp"
                        android:layout_marginTop="10dp" >

                        <LinearLayout
                            android:orientation="horizontal"
                            android:layout_width="match_parent"
                            android:layout_height="match_parent"
                            android:id="@+id/linearLayout122" >

                            <ImageView
                                android:layout_width="52dp"
                                android:layout_height="52dp"
                                android:background="@color/app_accent"
                                android:padding="@dimen/space_8dp"
                                android:id="@+id/button20"
                                android:onClick="addimage"
                                android:src="@drawable/ic_collections_white_48dp" />

                        </LinearLayout>
                    </HorizontalScrollView>
                </LinearLayout>

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/aggiungilocale_btn"
                    android:id="@+id/button9"
                    android:layout_gravity="center_horizontal"
                    android:layout_marginTop="10dp"
                    android:onClick="addclick" />

                <LinearLayout
                    android:orientation="vertical"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/linear2"
                    android:layout_weight="0.5">
                </LinearLayout>
            </LinearLayout>
        </LinearLayout>
    </ScrollView>
</LinearLayout>

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

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

me

680 Diff Diff MStefanelli picture MStefanelli Fri 04 Sep, 2015 14:20:31 +0000

me

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

me

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

me

546 Diff Diff FFontana picture FFontana Tue 25 Aug, 2015 09:40:38 +0000
542 Diff Diff FFontana picture FFontana Mon 24 Aug, 2015 21:40:56 +0000
524 Diff Diff FFontana picture FFontana Sat 22 Aug, 2015 10:47:42 +0000
523 Diff Diff MStefanelli picture MStefanelli Fri 21 Aug, 2015 16:43:01 +0000
521 Diff Diff MStefanelli picture MStefanelli Fri 21 Aug, 2015 12:38:59 +0000
506 FFontana picture FFontana Wed 19 Aug, 2015 17:39:12 +0000