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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/background">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:id="@+id/scrollView">

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

            <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/smallinfo">

                <RelativeLayout
                    android:id="@+id/map_container"
                    android:layout_width="match_parent"
                    android:layout_height="200dp"
                    android:descendantFocusability="beforeDescendants"
                    android:focusableInTouchMode="true"
                    >
                    <fragment
                        android:id="@+id/map"
                        class="it.fedeloper.smartcharging.Controller.ScrollMapFragment"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"/>

                    <EditText
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_horizontal"
                        android:layout_alignParentBottom="true"
                        android:layout_marginLeft="42dp"
                        android:layout_marginRight="42dp"
                        android:layout_marginBottom="8dp"
                        android:textSize="@dimen/text_s"
                        android:padding="@dimen/space_16dp"
                        android:hint="@string/hint_search"
                        android:id="@+id/editText6"
                        android:singleLine="true"
                        android:background="@drawable/google_now_edittext" />
                </RelativeLayout>

                <LinearLayout
                    android:orientation="vertical"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:id="@+id/locale_container"
                    android:background="@color/background"
                    android:padding="@dimen/space_16dp"
                    android:layout_marginBottom="@dimen/space_16dp">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:orientation="horizontal"
                        android:weightSum="2">

                        <RelativeLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:paddingRight="@dimen/space_8dp"
                            android:layout_weight="1">


                            <it.fedeloper.smartcharging.View.RoundedImageView
                                android:layout_width="60dp"
                                android:layout_height="60dp"
                                android:layout_marginRight="@dimen/space_8dp"
                                android:id="@+id/profile_image"
                                android:scaleType="centerCrop" />

                            <!-- Nome Locale-->
                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:singleLine="true"
                                android:ellipsize="end"
                                android:textAppearance="?android:attr/textAppearanceMedium"
                                android:id="@+id/nome_locale"
                                android:layout_toRightOf="@id/profile_image"
                                android:textColor="#676767"
                                android:layout_marginTop="5dp" />

                            <!-- TIPOLOGIA-->
                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:capitalize="words"
                                android:singleLine="true"
                                android:id="@+id/tipologia"
                                android:textColor="#a4a4a4"
                                android:layout_toRightOf="@id/profile_image"
                                android:layout_below="@+id/nome_locale"
                                android:layout_marginTop="3dp" />
                        </RelativeLayout>
                        <Button
                            android:minWidth="180dp"
                            android:layout_width="wrap_content"
                            android:layout_weight="1"
                            android:layout_height="wrap_content"
                            android:maxLines="2"
                            android:ellipsize="end"
                            android:text="@string/scrivirecensione_btn"
                            android:id="@+id/button12"
                            android:textSize="10dp"
                            android:onClick="clickRecensione"
                            android:layout_alignParentRight="true"/>
                    </LinearLayout>

                    <!-- Via locale-->
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:ellipsize="end"
                        android:singleLine="true"
                        android:capitalize="words"
                        android:textSize="15sp"
                        android:textAppearance="?android:attr/textAppearanceMedium"
                        android:id="@+id/via_locale"
                        android:layout_marginTop="@dimen/space_8dp"
                        android:textColor="#676767"/>
                    <LinearLayout
                        android:layout_width="match_parent"
                        android:orientation="vertical"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="@dimen/space_8dp"
                        android:weightSum="3">
                        <!-- cari_locale-->
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:singleLine="true"
                            android:gravity="right"
                            android:textAppearance="?android:attr/textAppearanceMedium"
                            android:id="@+id/cari_locale"
                            android:textSize="14dp"
                            android:ellipsize="end"
                            android:layout_weight="1" />
                        
                        <!-- Sito locale-->
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:singleLine="true"
                            android:gravity="left"
                            android:textAppearance="?android:attr/textAppearanceMedium"
                            android:id="@+id/sito_locale"
                            android:textSize="14dp"
                            android:ellipsize="end"
                            android:layout_weight="1"
                            android:textColor="@color/app_accent"/>

                        <!-- email_locale-->
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:gravity="center_horizontal"
                            android:textAppearance="?android:attr/textAppearanceMedium"
                            android:id="@+id/email_locale"
                            android:singleLine="true"
                            android:textSize="14dp"
                            android:ellipsize="end"
                            android:layout_weight="1"
                            android:textColor="@color/app_accent"/>

                        <!-- num_locale-->
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:singleLine="true"
                            android:gravity="right"
                            android:textAppearance="?android:attr/textAppearanceMedium"
                            android:id="@+id/num_locale"
                            android:textSize="14dp"
                            android:ellipsize="end"
                            android:layout_weight="1"
                            android:textColor="@color/app_accent"/>


                    </LinearLayout>

                    <RatingBar
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="@dimen/space_8dp"
                        android:isIndicator="true"
                        android:id="@+id/ratingBar"
                        android:rating="5"/>

                    <!-- Descrizione locale-->
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLength="4000"
                        android:ellipsize="end"
                        android:layout_marginTop="@dimen/space_8dp"
                        android:id="@+id/descrizione"
                        android:textSize="@dimen/text_xm"
                        android:textColor="#9a9a9a"/>
                </LinearLayout>

                <!-- TODO -->
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textAppearance="?android:attr/textAppearanceMedium"
                    android:text="@string/seleziona_locale"
                    android:layout_marginTop="@dimen/space_32dp"
                    android:id="@+id/no_locali_message"
                    android:layout_gravity="center_horizontal" />

            </LinearLayout>



            <FrameLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:paddingBottom="@dimen/space_48dp"
                android:id="@+id/fullInfo"/>
        </LinearLayout>
    </ScrollView>

    <Button
        android:layout_width="100dp"
        android:layout_height="30dp"
        android:text="@string/local_detail_button"
        android:textSize="10sp"
        android:id="@+id/button11"
        android:onClick="showOtherLocalInfo"
        android:background="@drawable/circle_violet"
        android:textColor="@color/md_white"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="@dimen/space_16dp" />

</RelativeLayout>

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

Diff revisions: vs.
Revision Author Commited Message
704 Diff Diff MStefanelli picture MStefanelli Mon 07 Sep, 2015 15:36:17 +0000

me

697 Diff Diff FFontana picture FFontana Mon 07 Sep, 2015 12:37:18 +0000
689 Diff Diff FFontana picture FFontana Fri 04 Sep, 2015 15:12:41 +0000
676 Diff Diff FFontana picture FFontana Fri 04 Sep, 2015 13:55:52 +0000
669 Diff Diff MStefanelli picture MStefanelli Fri 04 Sep, 2015 11:03:50 +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

633 Diff Diff MStefanelli picture MStefanelli Tue 01 Sep, 2015 10:35:01 +0000

Strizz

629 MStefanelli picture MStefanelli Tue 01 Sep, 2015 09:23:02 +0000

SuperCommit