Commit d983ffd8c9a564839f4273116f528bdb5862c010
1 parent
e86e7a3c
Exists in
master
GSAN CONSENSO
Showing
1020 changed files
with
231225 additions
and
0 deletions
Show diff stats
Too many changes.
To preserve performance only 100 of 1020 files displayed.
@@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<classpath> | ||
3 | + <classpathentry kind="src" path="src"/> | ||
4 | + <classpathentry kind="src" path="gen"/> | ||
5 | + <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | ||
6 | + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
7 | + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> | ||
8 | + <classpathentry exported="true" kind="lib" path="libs/api-generica-gsanac.jar"/> | ||
9 | + <classpathentry kind="output" path="bin/classes"/> | ||
10 | +</classpath> |
@@ -0,0 +1,33 @@ | @@ -0,0 +1,33 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<projectDescription> | ||
3 | + <name>atualizacao-cadastral</name> | ||
4 | + <comment></comment> | ||
5 | + <projects> | ||
6 | + </projects> | ||
7 | + <buildSpec> | ||
8 | + <buildCommand> | ||
9 | + <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name> | ||
10 | + <arguments> | ||
11 | + </arguments> | ||
12 | + </buildCommand> | ||
13 | + <buildCommand> | ||
14 | + <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name> | ||
15 | + <arguments> | ||
16 | + </arguments> | ||
17 | + </buildCommand> | ||
18 | + <buildCommand> | ||
19 | + <name>org.eclipse.jdt.core.javabuilder</name> | ||
20 | + <arguments> | ||
21 | + </arguments> | ||
22 | + </buildCommand> | ||
23 | + <buildCommand> | ||
24 | + <name>com.android.ide.eclipse.adt.ApkBuilder</name> | ||
25 | + <arguments> | ||
26 | + </arguments> | ||
27 | + </buildCommand> | ||
28 | + </buildSpec> | ||
29 | + <natures> | ||
30 | + <nature>com.android.ide.eclipse.adt.AndroidNature</nature> | ||
31 | + <nature>org.eclipse.jdt.core.javanature</nature> | ||
32 | + </natures> | ||
33 | +</projectDescription> |
@@ -0,0 +1,232 @@ | @@ -0,0 +1,232 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + package="com.br.gsanac" | ||
4 | + android:versionCode="22101" | ||
5 | + android:versionName="2.2.10.1" | ||
6 | + android:debuggable="true" > | ||
7 | + | ||
8 | + <uses-sdk | ||
9 | + android:minSdkVersion="15" | ||
10 | + android:targetSdkVersion="15" /> | ||
11 | + | ||
12 | + <!-- Permissions --> | ||
13 | + <uses-permission android:name="android.permission.SET_DEBUG_APP" /> | ||
14 | + <uses-permission android:name="android.permission.INTERNET" /> | ||
15 | + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | ||
16 | + <uses-permission android:name="android.permission.CAMERA" /> | ||
17 | + <uses-permission android:name="android.permission.READ_PHONE_STATE" /> | ||
18 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
19 | + <uses-permission android:name="android.permission.ACESS_FINE_LOCATION" /> | ||
20 | + <uses-permission android:name="android.permission.GET_TASKS" /> | ||
21 | + <!-- <uses-permission android:name="android.permission.INSTALL_PACKAGES" /> --> | ||
22 | + <uses-permission android:name="android.permission.WRITE_OWNER_DATA" /> | ||
23 | + <uses-permission android:name="android.permission.READ_OWNER_DATA" /> | ||
24 | + <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
25 | + | ||
26 | + <!-- Features --> | ||
27 | + <uses-feature android:name="android.hardware.camera" /> | ||
28 | + <uses-feature android:name="android.hardware.camera.autofocus" /> | ||
29 | + | ||
30 | + <application | ||
31 | + android:label="@string/app_name" | ||
32 | + android:theme="@style/AppTheme" | ||
33 | + android:icon="@drawable/icone" | ||
34 | + > | ||
35 | + | ||
36 | + <activity | ||
37 | + android:name="com.br.gsanac.gui.EnderecoAbaActivity" | ||
38 | + android:label="@string/title_activity_endereco_aba" > | ||
39 | + <intent-filter> | ||
40 | + <action android:name="android.intent.action.DEFAULT" /> | ||
41 | + | ||
42 | + <category android:name="android.intent.category.DEFAULT" /> | ||
43 | + </intent-filter> | ||
44 | + </activity> | ||
45 | + | ||
46 | + <activity android:name="com.br.gsanac.gui.SelecionarArquivoActivity" | ||
47 | + android:screenOrientation="portrait"> | ||
48 | + <intent-filter> | ||
49 | + <action android:name="android.intent.action.DEFAULT" /> | ||
50 | + <category android:name="android.intent.category.DEFAULT" /> | ||
51 | + </intent-filter> | ||
52 | + </activity> | ||
53 | + | ||
54 | + <activity android:name="com.br.gsanac.gui.SelecionarArquivoDivididoActivity" | ||
55 | + android:screenOrientation="portrait"> | ||
56 | + <intent-filter> | ||
57 | + <action android:name="android.intent.action.DEFAULT" /> | ||
58 | + <category android:name="android.intent.category.DEFAULT" /> | ||
59 | + </intent-filter> | ||
60 | + </activity> | ||
61 | + | ||
62 | + <activity android:name="com.br.gsanac.gui.DownloadArquivoActivity" | ||
63 | + android:screenOrientation="portrait" > | ||
64 | + <intent-filter> | ||
65 | + <action android:name="android.intent.action.DEFAULT" /> | ||
66 | + | ||
67 | + <category android:name="android.intent.category.DEFAULT" /> | ||
68 | + </intent-filter> | ||
69 | + </activity> | ||
70 | + | ||
71 | + <activity | ||
72 | + android:name="com.br.gsanac.gui.TabsActivity" | ||
73 | + android:icon="@drawable/cabecalho" | ||
74 | + android:screenOrientation="portrait"> | ||
75 | + <intent-filter> | ||
76 | + <action android:name="editarImovel" /> | ||
77 | + | ||
78 | + <category android:name="android.intent.category.DEFAULT" /> | ||
79 | + </intent-filter> | ||
80 | + </activity> | ||
81 | + | ||
82 | + <activity android:name="com.br.gsanac.gui.LogradouroInserirActivity" | ||
83 | + android:screenOrientation="portrait" android:label="@string/cabecalho_logradouro"> | ||
84 | + <intent-filter > | ||
85 | + <action android:name="android.intent.action.DEFAULT" /> | ||
86 | + | ||
87 | + <category android:name="android.intent.category.DEFAULT" /> | ||
88 | + </intent-filter> | ||
89 | + </activity> | ||
90 | + | ||
91 | + <activity android:name="com.br.gsanac.gui.LocalidadeAbaActivity" > | ||
92 | + <intent-filter> | ||
93 | + <action android:name="android.intent.action.DEFAULT" /> | ||
94 | + | ||
95 | + <category android:name="android.intent.category.DEFAULT" /> | ||
96 | + </intent-filter> | ||
97 | + </activity> | ||
98 | + | ||
99 | + <activity android:name="com.br.gsanac.gui.ClienteAbaActivity" > | ||
100 | + <intent-filter> | ||
101 | + <action android:name="android.intent.action.DEFAULT" /> | ||
102 | + | ||
103 | + <category android:name="android.intent.category.DEFAULT" /> | ||
104 | + </intent-filter> | ||
105 | + </activity> | ||
106 | + | ||
107 | + <activity | ||
108 | + android:name="com.br.gsanac.gui.RoteiroActivity" | ||
109 | + android:label="@string/cabecalho_roteiro" | ||
110 | + android:screenOrientation="portrait" android:icon="@drawable/tab"> | ||
111 | + <intent-filter> | ||
112 | + <action android:name="editarRoteiro" /> | ||
113 | + | ||
114 | + <category android:name="android.intent.category.DEFAULT" /> | ||
115 | + </intent-filter> | ||
116 | + </activity> | ||
117 | + | ||
118 | + <activity | ||
119 | + android:name="com.br.gsanac.gui.LigacaoAbaActivity" | ||
120 | + android:label="@string/title_activity_ligacao_aba" > | ||
121 | + <intent-filter> | ||
122 | + <action android:name="android.intent.action.DEFAULT" /> | ||
123 | + | ||
124 | + <category android:name="android.intent.category.DEFAULT" /> | ||
125 | + </intent-filter> | ||
126 | + </activity> | ||
127 | + | ||
128 | + <activity android:name="com.br.gsanac.gui.ApkActivity" | ||
129 | + android:screenOrientation="portrait"> | ||
130 | + <intent-filter> | ||
131 | + <action android:name="android.intent.action.DEFAULT" /> | ||
132 | + <category android:name="android.intent.category.DEFAULT" /> | ||
133 | + </intent-filter> | ||
134 | + </activity> | ||
135 | + | ||
136 | + <activity | ||
137 | + android:name="com.br.gsanac.gui.DownloadApkActivity" | ||
138 | + android:screenOrientation="portrait"> | ||
139 | + <intent-filter> | ||
140 | + <action android:name="android.intent.action.DEFAULT" /> | ||
141 | + <category android:name="android.intent.category.DEFAULT" /> | ||
142 | + </intent-filter> | ||
143 | + </activity> | ||
144 | + | ||
145 | + <activity | ||
146 | + android:name="com.br.gsanac.gui.LoginActivity" | ||
147 | + android:screenOrientation="portrait" > | ||
148 | + <intent-filter> | ||
149 | + <action android:name="android.intent.action.MAIN" /> | ||
150 | + <category android:name="android.intent.category.LAUNCHER" /> | ||
151 | + </intent-filter> | ||
152 | + </activity> | ||
153 | + | ||
154 | + <activity | ||
155 | + android:name="com.br.gsanac.gui.FotosAbaActivity" | ||
156 | + android:label="@string/title_activity_fotos_aba" | ||
157 | + android:screenOrientation="portrait"> | ||
158 | + </activity> | ||
159 | + | ||
160 | + <activity android:name="com.br.gsanac.gui.ImovelAbaActivity" > | ||
161 | + <intent-filter> | ||
162 | + <action android:name="android.intent.action.DEFAULT" /> | ||
163 | + <category android:name="android.intent.category.DEFAULT" /> | ||
164 | + </intent-filter> | ||
165 | + </activity> | ||
166 | + | ||
167 | + <activity android:name="com.br.gsanac.gui.CategoriaImovelInserirActivity" | ||
168 | + android:screenOrientation="portrait" android:label="@string/cabecalho_categoria" > | ||
169 | + <intent-filter> | ||
170 | + <action android:name="android.intent.action.DEFAULT" /> | ||
171 | + | ||
172 | + <category android:name="android.intent.category.DEFAULT" /> | ||
173 | + </intent-filter> | ||
174 | + </activity> | ||
175 | + | ||
176 | + <activity android:name="com.br.gsanac.gui.FinalizarRoteiroActivity" | ||
177 | + android:screenOrientation="portrait" > | ||
178 | + <intent-filter> | ||
179 | + <action android:name="android.intent.action.DEFAULT" /> | ||
180 | + | ||
181 | + <category android:name="android.intent.category.DEFAULT" /> | ||
182 | + </intent-filter> | ||
183 | + </activity> | ||
184 | + | ||
185 | + <activity android:name="com.br.gsanac.gui.ArquivoFinalizadoActivity" | ||
186 | + android:screenOrientation="portrait" > | ||
187 | + <intent-filter> | ||
188 | + <action android:name="android.intent.action.DEFAULT" /> | ||
189 | + | ||
190 | + <category android:name="android.intent.category.DEFAULT" /> | ||
191 | + </intent-filter> | ||
192 | + </activity> | ||
193 | + | ||
194 | + <activity android:name="com.br.gsanac.gui.RelatorioActivity" | ||
195 | + android:screenOrientation="portrait" > | ||
196 | + <intent-filter> | ||
197 | + <action android:name="android.intent.action.DEFAULT" /> | ||
198 | + | ||
199 | + <category android:name="android.intent.category.DEFAULT" /> | ||
200 | + </intent-filter> | ||
201 | + </activity> | ||
202 | + | ||
203 | + <activity android:name="com.br.gsanac.gui.RelatorioPorOcorrenciaCadastroActivity" | ||
204 | + android:screenOrientation="portrait" > | ||
205 | + <intent-filter> | ||
206 | + <action android:name="android.intent.action.DEFAULT" /> | ||
207 | + | ||
208 | + <category android:name="android.intent.category.DEFAULT" /> | ||
209 | + </intent-filter> | ||
210 | + </activity> | ||
211 | + | ||
212 | + <activity android:name="com.br.gsanac.gui.RelatorioPorCadastradorActivity" | ||
213 | + android:screenOrientation="portrait" > | ||
214 | + <intent-filter> | ||
215 | + <action android:name="android.intent.action.DEFAULT" /> | ||
216 | + | ||
217 | + <category android:name="android.intent.category.DEFAULT" /> | ||
218 | + </intent-filter> | ||
219 | + </activity> | ||
220 | + | ||
221 | + <activity android:name="com.br.gsanac.gui.VersaoArquivoErradaActivity" | ||
222 | + android:screenOrientation="portrait" > | ||
223 | + <intent-filter> | ||
224 | + <action android:name="android.intent.action.DEFAULT" /> | ||
225 | + <category android:name="android.intent.category.DEFAULT" /> | ||
226 | + </intent-filter> | ||
227 | + </activity> | ||
228 | + | ||
229 | + | ||
230 | + </application> | ||
231 | + | ||
232 | +</manifest> | ||
0 | \ No newline at end of file | 233 | \ No newline at end of file |
@@ -0,0 +1,37 @@ | @@ -0,0 +1,37 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<rendertheme xmlns="http://mapsforge.org/renderTheme" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
3 | + xsi:schemaLocation="http://mapsforge.org/renderTheme renderTheme.xsd" version="4" map-background="#FFEE99" map-background-outside="#FFEE99"> | ||
4 | + | ||
5 | + <!-- https://github.com/mapsforge/mapsforge/blob/master/mapsforge-map/src/main/resources/osmarender/osmarender.xml --> | ||
6 | + | ||
7 | + <!-- Lote --> | ||
8 | + <rule e="way" k="highway" v="footway"> | ||
9 | + <line stroke="#0000FE" stroke-width="0.1" /> | ||
10 | + </rule> | ||
11 | + | ||
12 | + <!-- Edificacao --> | ||
13 | + <rule e="way" k="highway" v="pedestrian"> | ||
14 | + <line stroke="#FE00FE" stroke-width="0.1" /> | ||
15 | + </rule> | ||
16 | + | ||
17 | + <!-- Piscina --> | ||
18 | + <rule e="way" k="highway" v="path"> | ||
19 | + <line stroke="#00FEFE" stroke-width="0.1" /> | ||
20 | + </rule> | ||
21 | + | ||
22 | + <!-- Numero do Lote --> | ||
23 | + <rule e="way" k="highway" v="service"> | ||
24 | + <line stroke="#CBCBCB" stroke-width="0.1" /> | ||
25 | + </rule> | ||
26 | + | ||
27 | + <!-- Desconhecido --> | ||
28 | + <rule e="way" k="highway" v="unclassified"> | ||
29 | + <line stroke="#333333" stroke-width="0.1" /> | ||
30 | + </rule> | ||
31 | + | ||
32 | + <!-- Ponto do Numero do Lote --> | ||
33 | + <rule e="node" k="amenity" v="*" zoom-min="18"> | ||
34 | + <caption k="name" font-style="bold" font-size="16" fill="#FFFFFF" stroke="#000000" stroke-width="2.5" display="always" priority="100" position="center"/> | ||
35 | + </rule> | ||
36 | + | ||
37 | +</rendertheme> |
@@ -0,0 +1,109 @@ | @@ -0,0 +1,109 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<project name="AtualizacaoCadastral" default="build"> | ||
3 | + <!-- | ||
4 | + The following will prevent for 'android' tool to overwrite this file. | ||
5 | + version-tag:custom | ||
6 | + --> | ||
7 | + | ||
8 | + <!-- CONFIGURACAO DO-BUILD ANDROID --> | ||
9 | + <property file="local.properties"/> | ||
10 | + <property file="ant.properties"/> | ||
11 | + <property environment="env"/> | ||
12 | + <property name="src" value="src"/> | ||
13 | + | ||
14 | + <condition property="sdk.dir" value="${env.ANDROID_HOME}"> | ||
15 | + <isset property="env.ANDROID_HOME"/> | ||
16 | + </condition> | ||
17 | + | ||
18 | + <loadproperties srcFile="project.properties"/> | ||
19 | + <fail message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable." unless="sdk.dir"/> | ||
20 | + | ||
21 | + <target name="check-properties"> | ||
22 | + <script language="javascript"> | ||
23 | + <![CDATA[ | ||
24 | + var echo = project.createTask("echo"); | ||
25 | + function print(msg) { | ||
26 | + echo.setMessage(msg); | ||
27 | + echo.perform(); | ||
28 | + } | ||
29 | + | ||
30 | + function check(prop, regex, msgInvalid) { | ||
31 | + var p = project.getProperty(prop); | ||
32 | + if (!p || !(p = p.trim()).length()) return; | ||
33 | + print(prop + " = '" + p + "'"); | ||
34 | + if(regex && !regex.test(p)) { | ||
35 | + print(msgInvalid); | ||
36 | + project.setProperty("prop.invalid", true); | ||
37 | + return; | ||
38 | + } | ||
39 | + project.setProperty(prop + ".valid", p); | ||
40 | + } | ||
41 | + | ||
42 | + check("servidor.url"); | ||
43 | + check("proxy.url"); | ||
44 | + check("proxy.port", /^\d{1,5}$/, "A porta deve conter apenas numeros ate cinco digitos"); | ||
45 | + check("app.version"); | ||
46 | + | ||
47 | + // definir app.version.code | ||
48 | + var v = project.getProperty("app.version.valid"); | ||
49 | + if(v && (v = v.replaceAll('\\D', '').trim())) { | ||
50 | + print("app.version.code = '" + v + "'"); | ||
51 | + project.setProperty("app.version.code", v); | ||
52 | + } | ||
53 | + ]]> | ||
54 | + </script> | ||
55 | + | ||
56 | + <fail if="prop.invalid"/> | ||
57 | + </target> | ||
58 | + | ||
59 | + <!-- SERVIDOR URL --> | ||
60 | + <target name="set-servidor-url" if="servidor.url.valid"> | ||
61 | + <replaceregexp | ||
62 | + file="${src}/com/br/gsanac/utilitarios/ConstantesSistema.java" | ||
63 | + match="SERVIDOR_URL\s*=.*" | ||
64 | + replace="SERVIDOR_URL = "${servidor.url.valid}";"/> | ||
65 | + </target> | ||
66 | + | ||
67 | + <!-- PROXY URL --> | ||
68 | + <target name="set-proxy-url" if="proxy.url.valid"> | ||
69 | + <replaceregexp | ||
70 | + file="${src}/com/br/gsanac/utilitarios/ConstantesSistema.java" | ||
71 | + match="PROXY_URL\s*=.*" | ||
72 | + replace="PROXY_URL = "${proxy.url.valid}";"/> | ||
73 | + </target> | ||
74 | + | ||
75 | + <!-- PROXY PORT --> | ||
76 | + <target name="set-proxy-port" if="proxy.port.valid"> | ||
77 | + <replaceregexp | ||
78 | + file="${src}/com/br/gsanac/utilitarios/ConstantesSistema.java" | ||
79 | + match="PROXY_PORT\s*=.*" | ||
80 | + replace="PROXY_PORT = ${proxy.port.valid};"/> | ||
81 | + </target> | ||
82 | + | ||
83 | + <!-- APP VERSION --> | ||
84 | + <target name="set-app-version" if="app.version.valid"> | ||
85 | + <replaceregexp | ||
86 | + file="AndroidManifest.xml" | ||
87 | + match="android:versionName\s*=.*" | ||
88 | + replace="android:versionName="${app.version.valid}""/> | ||
89 | + </target> | ||
90 | + | ||
91 | + <!-- APP VERSION CODE--> | ||
92 | + <target name="set-app-version-code" if="app.version.code"> | ||
93 | + <replaceregexp | ||
94 | + file="AndroidManifest.xml" | ||
95 | + match="android:versionCode\s*=.*" | ||
96 | + replace="android:versionCode="${app.version.code}""/> | ||
97 | + </target> | ||
98 | + | ||
99 | + <!-- PRE-BUILD --> | ||
100 | + <target depends=" | ||
101 | + check-properties, | ||
102 | + set-servidor-url, | ||
103 | + set-proxy-url, | ||
104 | + set-proxy-port, | ||
105 | + set-app-version, | ||
106 | + set-app-version-code" name="-pre-build"/> | ||
107 | + | ||
108 | + <import file="${sdk.dir}/tools/ant/build.xml"/> | ||
109 | +</project> | ||
0 | \ No newline at end of file | 110 | \ No newline at end of file |
No preview for this file type
@@ -0,0 +1,20 @@ | @@ -0,0 +1,20 @@ | ||
1 | +# To enable ProGuard in your project, edit project.properties | ||
2 | +# to define the proguard.config property as described in that file. | ||
3 | +# | ||
4 | +# Add project specific ProGuard rules here. | ||
5 | +# By default, the flags in this file are appended to flags specified | ||
6 | +# in ${sdk.dir}/tools/proguard/proguard-android.txt | ||
7 | +# You can edit the include path and order by changing the ProGuard | ||
8 | +# include property in project.properties. | ||
9 | +# | ||
10 | +# For more details, see | ||
11 | +# http://developer.android.com/guide/developing/tools/proguard.html | ||
12 | + | ||
13 | +# Add any project specific keep options here: | ||
14 | + | ||
15 | +# If your project uses WebView with JS, uncomment the following | ||
16 | +# and specify the fully qualified class name to the JavaScript interface | ||
17 | +# class: | ||
18 | +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
19 | +# public *; | ||
20 | +#} |
@@ -0,0 +1,14 @@ | @@ -0,0 +1,14 @@ | ||
1 | +# This file is automatically generated by Android Tools. | ||
2 | +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! | ||
3 | +# | ||
4 | +# This file must be checked in Version Control Systems. | ||
5 | +# | ||
6 | +# To customize properties used by the Ant build system edit | ||
7 | +# "ant.properties", and override values to adapt the script to your | ||
8 | +# project structure. | ||
9 | +# | ||
10 | +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): | ||
11 | +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt | ||
12 | + | ||
13 | +# Project target. | ||
14 | +target=android-15 |
@@ -0,0 +1,4 @@ | @@ -0,0 +1,4 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<translate xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:fromXDelta="100%p" android:toXDelta="0%p" | ||
4 | + android:duration="@android:integer/config_longAnimTime"/> | ||
0 | \ No newline at end of file | 5 | \ No newline at end of file |
atualizacao-cadastral-master/res/anim/slide_in_right.xml
0 → 100644
@@ -0,0 +1,4 @@ | @@ -0,0 +1,4 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<translate xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:fromXDelta="-100%p" android:toXDelta="0%p" | ||
4 | + android:duration="@android:integer/config_longAnimTime" /> | ||
0 | \ No newline at end of file | 5 | \ No newline at end of file |
atualizacao-cadastral-master/res/anim/slide_out_left.xml
0 → 100644
@@ -0,0 +1,4 @@ | @@ -0,0 +1,4 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<translate xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:fromXDelta="0" android:toXDelta="-100%p" | ||
4 | + android:duration="@android:integer/config_longAnimTime" /> | ||
0 | \ No newline at end of file | 5 | \ No newline at end of file |
atualizacao-cadastral-master/res/anim/slide_out_right.xml
0 → 100644
@@ -0,0 +1,4 @@ | @@ -0,0 +1,4 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<translate xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:fromXDelta="0" android:toXDelta="100%p" | ||
4 | + android:duration="@android:integer/config_longAnimTime" /> | ||
0 | \ No newline at end of file | 5 | \ No newline at end of file |
11.1 KB
6.06 KB
3.05 KB
4.88 KB
2.92 KB
3.11 KB
11.1 KB
6.06 KB
2.92 KB
3.11 KB
atualizacao-cadastral-master/res/drawable-mdpi/backgroundcabecalho.png
0 → 100644
3.71 KB
179 KB
10.8 KB
3.93 KB
10 KB
3.74 KB
3.82 KB
3.82 KB
3.68 KB
11.1 KB
916 Bytes
3.94 KB
6.06 KB
2.96 KB
2.99 KB
478 Bytes
577 Bytes
5.42 KB
2.92 KB
22.2 KB
4.05 KB
1.01 KB
70 Bytes
3.74 KB
3.86 KB
1.66 KB
3.11 KB
3.12 KB
6.52 KB
@@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:shape="rectangle" > | ||
4 | + | ||
5 | + <solid android:color="#FFFFFF" /> | ||
6 | + | ||
7 | + <stroke android:width="1dp" android:color="#000000"/> | ||
8 | + | ||
9 | +</shape> | ||
10 | + | ||
0 | \ No newline at end of file | 11 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/botao_bg_selected.xml
0 → 100644
@@ -0,0 +1,16 @@ | @@ -0,0 +1,16 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#60b2e9" android:centerColor="#4e9ede" | ||
8 | + android:endColor="#3183ce" android:angle="-90" /> | ||
9 | + | ||
10 | + <stroke | ||
11 | + android:width="1.2dp" | ||
12 | + android:color="#A8A8A8" /> | ||
13 | + | ||
14 | + <corners android:radius="7px"/> | ||
15 | + | ||
16 | +</shape> | ||
0 | \ No newline at end of file | 17 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/botao_bg_selector.xml
0 → 100644
@@ -0,0 +1,18 @@ | @@ -0,0 +1,18 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
6 | + | ||
7 | + <!-- Active menu --> | ||
8 | + <item android:state_selected="true" android:state_focused="false" | ||
9 | + android:state_pressed="false" android:drawable="@drawable/botao_bg_unselected" /> | ||
10 | + <!-- Inactive menu --> | ||
11 | + <item android:state_selected="false" android:state_focused="false" | ||
12 | + android:state_pressed="false" android:drawable="@drawable/botao_bg_unselected" /> | ||
13 | + <!-- Pressed menu --> | ||
14 | + <item android:state_pressed="true" android:drawable="@drawable/botao_bg_selected" /> | ||
15 | + <!-- Selected menu (using d-pad) --> | ||
16 | + <item android:state_focused="true" android:state_selected="true" | ||
17 | + android:state_pressed="false" android:drawable="@color/transparent" /> | ||
18 | +</selector> |
atualizacao-cadastral-master/res/drawable/botao_bg_selector_login.xml
0 → 100644
@@ -0,0 +1,18 @@ | @@ -0,0 +1,18 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
6 | + | ||
7 | + <!-- Active menu --> | ||
8 | + <item android:state_selected="true" android:state_focused="false" | ||
9 | + android:state_pressed="false" android:drawable="@drawable/botao_bg_unselected_login" /> | ||
10 | + <!-- Inactive menu --> | ||
11 | + <item android:state_selected="false" android:state_focused="false" | ||
12 | + android:state_pressed="false" android:drawable="@drawable/botao_bg_unselected_login" /> | ||
13 | + <!-- Pressed menu --> | ||
14 | + <item android:state_pressed="true" android:drawable="@drawable/botao_bg_selected" /> | ||
15 | + <!-- Selected menu (using d-pad) --> | ||
16 | + <item android:state_focused="true" android:state_selected="true" | ||
17 | + android:state_pressed="false" android:drawable="@color/transparent" /> | ||
18 | +</selector> |
atualizacao-cadastral-master/res/drawable/botao_bg_unselected.xml
0 → 100644
@@ -0,0 +1,16 @@ | @@ -0,0 +1,16 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#e6eaed" android:centerColor="#bec2c6" | ||
8 | + android:endColor="#8f9395" android:angle="-90" /> | ||
9 | + | ||
10 | + <stroke | ||
11 | + android:width="1.2dp" | ||
12 | + android:color="#A8A8A8" /> | ||
13 | + | ||
14 | + <corners android:radius="7px"/> | ||
15 | + | ||
16 | +</shape> | ||
0 | \ No newline at end of file | 17 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/botao_bg_unselected_login.xml
0 → 100644
@@ -0,0 +1,12 @@ | @@ -0,0 +1,12 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#395372" android:centerColor="#395372" | ||
8 | + android:endColor="#395372" android:angle="-90" /> | ||
9 | + | ||
10 | + <corners android:radius="7px"/> | ||
11 | + | ||
12 | +</shape> | ||
0 | \ No newline at end of file | 13 | \ No newline at end of file |
@@ -0,0 +1,15 @@ | @@ -0,0 +1,15 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<!-- Copyright (c) Josh Clemm 2010 --> | ||
3 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
4 | + android:shape="rectangle" > | ||
5 | + | ||
6 | + <gradient | ||
7 | + android:angle="-90" | ||
8 | + android:endColor="#10275b" | ||
9 | + android:startColor="#2b4278" /> | ||
10 | + | ||
11 | + <stroke | ||
12 | + android:width="1.2dp" | ||
13 | + android:color="#A8A8A8" /> | ||
14 | + | ||
15 | +</shape> | ||
0 | \ No newline at end of file | 16 | \ No newline at end of file |
@@ -0,0 +1,16 @@ | @@ -0,0 +1,16 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#f6f6f6" android:centerColor="#dfdfdf" | ||
8 | + android:endColor="#bbbbbb" android:angle="-90" /> | ||
9 | + | ||
10 | + <stroke | ||
11 | + android:width="1.2dp" | ||
12 | + android:color="#A8A8A8" /> | ||
13 | + | ||
14 | + <corners android:bottomRightRadius="7dp" android:bottomLeftRadius="7dp" | ||
15 | + android:topLeftRadius="7dp" android:topRightRadius="7dp"/> | ||
16 | +</shape> | ||
0 | \ No newline at end of file | 17 | \ No newline at end of file |
@@ -0,0 +1,13 @@ | @@ -0,0 +1,13 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#4d4d4d" android:centerColor="#070707" | ||
8 | + android:endColor="#000000" android:angle="-90" /> | ||
9 | + | ||
10 | + <corners android:bottomRightRadius="7dp" android:bottomLeftRadius="7dp" | ||
11 | + android:topLeftRadius="7dp" android:topRightRadius="7dp"/> | ||
12 | + | ||
13 | +</shape> | ||
0 | \ No newline at end of file | 14 | \ No newline at end of file |
@@ -0,0 +1,13 @@ | @@ -0,0 +1,13 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#000000" android:centerColor="#000000" | ||
8 | + android:endColor="#000000" android:angle="-90" /> | ||
9 | + | ||
10 | + <corners android:bottomRightRadius="7dp" android:bottomLeftRadius="7dp" | ||
11 | + android:topLeftRadius="7dp" android:topRightRadius="7dp"/> | ||
12 | + | ||
13 | +</shape> | ||
0 | \ No newline at end of file | 14 | \ No newline at end of file |
@@ -0,0 +1,11 @@ | @@ -0,0 +1,11 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:shape="rectangle" > | ||
4 | + | ||
5 | + <solid android:color="#163665" /> | ||
6 | + | ||
7 | + <TextView android:layout_gravity="center" android:gravity="center" | ||
8 | + android:textColor="#ffffff" android:textStyle="bold" android:id="@+id/cabecalho" android:textSize="17px" | ||
9 | + android:layout_height="wrap_content" android:text="@string/app_name" android:layout_width="wrap_content"></TextView> | ||
10 | +</shape> | ||
11 | + | ||
0 | \ No newline at end of file | 12 | \ No newline at end of file |
11.1 KB
atualizacao-cadastral-master/res/drawable/fundo_bg_rodape.xml
0 → 100644
@@ -0,0 +1,14 @@ | @@ -0,0 +1,14 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#e6eaed" android:centerColor="#bec2c6" | ||
8 | + android:endColor="#8f9395" android:angle="-90" /> | ||
9 | + | ||
10 | + <stroke | ||
11 | + android:width="1.2dp" | ||
12 | + android:color="#A8A8A8" /> | ||
13 | + | ||
14 | +</shape> | ||
0 | \ No newline at end of file | 15 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/fundoazulclaro_bg.xml
0 → 100644
@@ -0,0 +1,11 @@ | @@ -0,0 +1,11 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + | ||
8 | + <gradient android:startColor="#60b2e9" android:centerColor="#4ea0de" | ||
9 | + android:endColor="#3183ce" android:angle="-90" /> | ||
10 | + | ||
11 | +</shape> | ||
0 | \ No newline at end of file | 12 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/fundobranco_bg.xml
0 → 100644
@@ -0,0 +1,17 @@ | @@ -0,0 +1,17 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#ffffff" android:endColor="#ffffff" android:angle="-90" /> | ||
8 | + | ||
9 | + <corners android:radius="7dip" /> | ||
10 | + | ||
11 | + <stroke | ||
12 | + android:width="1.2dip" | ||
13 | + android:color="#808080" /> | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | +</shape> | ||
0 | \ No newline at end of file | 18 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/fundocinza_bg.xml
0 → 100644
@@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#ffffff" android:centerColor="#e6eaed" | ||
8 | + android:endColor="#bec2c6" android:angle="-90" /> | ||
9 | + | ||
10 | +</shape> | ||
0 | \ No newline at end of file | 11 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/fundopreto_bg.xml
0 → 100644
@@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#4d4d4d" android:centerColor="#070707" | ||
8 | + android:endColor="#000000" android:angle="-90" /> | ||
9 | + | ||
10 | +</shape> | ||
0 | \ No newline at end of file | 11 | \ No newline at end of file |
1.79 KB
@@ -0,0 +1,11 @@ | @@ -0,0 +1,11 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#e6eaed" android:centerColor="#bec2c6" | ||
8 | + android:endColor="#8f9395" android:angle="-90" /> | ||
9 | + | ||
10 | + | ||
11 | +</shape> | ||
0 | \ No newline at end of file | 12 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/imovelcondominio_bg.xml
0 → 100644
@@ -0,0 +1,17 @@ | @@ -0,0 +1,17 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#45688a" android:centerColor="#1d4063" | ||
8 | + android:endColor="#00173a" android:angle="-90" /> | ||
9 | + | ||
10 | + | ||
11 | + <corners android:radius="3dp"/> | ||
12 | + | ||
13 | + <stroke | ||
14 | + android:width="1dp" | ||
15 | + android:color="#000000" /> | ||
16 | + | ||
17 | +</shape> | ||
0 | \ No newline at end of file | 18 | \ No newline at end of file |
@@ -0,0 +1,13 @@ | @@ -0,0 +1,13 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#ffffff" android:centerColor="#e6eaed" | ||
8 | + android:endColor="#bec2c6" android:angle="-90" /> | ||
9 | + | ||
10 | + <corners android:radius="6dp" /> | ||
11 | + | ||
12 | + | ||
13 | +</shape> | ||
0 | \ No newline at end of file | 14 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/menu_bg_selected.xml
0 → 100644
@@ -0,0 +1,9 @@ | @@ -0,0 +1,9 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#d8d8d8" android:centerColor="#c0bcbc" | ||
8 | + android:endColor="#aeabab" android:angle="-90" /> | ||
9 | +</shape> | ||
0 | \ No newline at end of file | 10 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/menu_bg_selector.xml
0 → 100644
@@ -0,0 +1,18 @@ | @@ -0,0 +1,18 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
6 | + | ||
7 | + <!-- Active menu --> | ||
8 | + <item android:state_selected="true" android:state_focused="false" | ||
9 | + android:state_pressed="false" android:drawable="@drawable/menu_bg_selected" /> | ||
10 | + <!-- Inactive menu --> | ||
11 | + <item android:state_selected="false" android:state_focused="false" | ||
12 | + android:state_pressed="false" android:drawable="@drawable/menu_bg_unselected" /> | ||
13 | + <!-- Pressed menu --> | ||
14 | + <item android:state_pressed="true" android:drawable="@color/transparent" /> | ||
15 | + <!-- Selected menu (using d-pad) --> | ||
16 | + <item android:state_focused="true" android:state_selected="true" | ||
17 | + android:state_pressed="false" android:drawable="@color/transparent" /> | ||
18 | +</selector> |
atualizacao-cadastral-master/res/drawable/menu_bg_unselected.xml
0 → 100644
@@ -0,0 +1,9 @@ | @@ -0,0 +1,9 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#e6eaed" android:centerColor="#bec2c6" | ||
8 | + android:endColor="#8f9395" android:angle="-90" /> | ||
9 | +</shape> | ||
0 | \ No newline at end of file | 10 | \ No newline at end of file |
@@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#394657" android:centerColor="#364e66" | ||
8 | + android:endColor="#223241" android:angle="-90" /> | ||
9 | + | ||
10 | +</shape> | ||
0 | \ No newline at end of file | 11 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/tab_anormalidade_bg.xml
0 → 100644
@@ -0,0 +1,15 @@ | @@ -0,0 +1,15 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + | ||
8 | + <solid android:color="#ffffff"/> | ||
9 | + <stroke android:width="1dp" android:color="#4f81bd"/> | ||
10 | + | ||
11 | + <corners android:bottomRightRadius="25dp" android:bottomLeftRadius="25dp" | ||
12 | + android:topLeftRadius="25dp" android:topRightRadius="25dp" /> | ||
13 | + | ||
14 | + | ||
15 | +</shape> | ||
0 | \ No newline at end of file | 16 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/tab_bg_cell.xml
0 → 100644
@@ -0,0 +1,11 @@ | @@ -0,0 +1,11 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + | ||
8 | + <solid android:color="#4f81bd"/> | ||
9 | + <stroke android:width="1dp" android:color="#000000"/> | ||
10 | + | ||
11 | +</shape> | ||
0 | \ No newline at end of file | 12 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/tab_bg_cell_options.xml
0 → 100644
@@ -0,0 +1,11 @@ | @@ -0,0 +1,11 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | + <shape xmlns:android="http://schemas.android.com/apk/res/android"> | ||
6 | + <solid android:color="#FFFFFF"/> | ||
7 | + <stroke android:width="2dp" android:color="#515151"/> | ||
8 | + <corners android:radius="0dp" /> | ||
9 | + <padding android:left="12dp" android:top="5dp" | ||
10 | + android:right="12dp" android:bottom="5dp" /> | ||
11 | +</shape> |
atualizacao-cadastral-master/res/drawable/tab_bg_selected.xml
0 → 100644
@@ -0,0 +1,9 @@ | @@ -0,0 +1,9 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#163665" android:centerColor="#163665" | ||
8 | + android:endColor="#163665" android:angle="-90" /> | ||
9 | +</shape> | ||
0 | \ No newline at end of file | 10 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/tab_bg_selector.xml
0 → 100644
@@ -0,0 +1,18 @@ | @@ -0,0 +1,18 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
6 | + | ||
7 | + <!-- Active tab --> | ||
8 | + <item android:state_selected="true" android:state_focused="false" | ||
9 | + android:state_pressed="false" android:drawable="@drawable/tab_bg_selected" /> | ||
10 | + <!-- Inactive tab --> | ||
11 | + <item android:state_selected="false" android:state_focused="false" | ||
12 | + android:state_pressed="false" android:drawable="@drawable/tab_bg_unselected" /> | ||
13 | + <!-- Pressed tab --> | ||
14 | + <item android:state_pressed="true" android:drawable="@drawable/tab_bg_selected" /> | ||
15 | + <!-- Selected tab (using d-pad) --> | ||
16 | + <item android:state_focused="true" android:state_selected="true" | ||
17 | + android:state_pressed="false" android:drawable="@drawable/tab_bg_selected" /> | ||
18 | +</selector> |
atualizacao-cadastral-master/res/drawable/tab_bg_unselected.xml
0 → 100644
@@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#d3d3d3" android:centerColor="#d3d3d3" | ||
8 | + android:endColor="#d3d3d3" | ||
9 | + android:angle="-90" /> | ||
10 | +</shape> | ||
0 | \ No newline at end of file | 11 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/tab_text_selector.xml
0 → 100644
@@ -0,0 +1,19 @@ | @@ -0,0 +1,19 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<!-- | ||
3 | + Copyright (c) 2010 Josh Clemm | ||
4 | +--> | ||
5 | +<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
6 | + <!-- Active tab --> | ||
7 | + <item android:state_selected="true" android:color="@android:color/white" /> | ||
8 | + <item android:state_focused="true" android:color="@android:color/white" /> | ||
9 | + <item android:state_pressed="true" android:color="@android:color/white" /> | ||
10 | + | ||
11 | + <!-- Inactive tab --> | ||
12 | + <item android:state_selected="false" android:color="@android:color/black" /> | ||
13 | + <item android:state_focused="false" android:color="@android:color/black" /> | ||
14 | + <item android:state_pressed="false" android:color="@android:color/black" /> | ||
15 | + <item android:color="#f8f8f8" /> | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | +</selector> | ||
0 | \ No newline at end of file | 20 | \ No newline at end of file |
@@ -0,0 +1,13 @@ | @@ -0,0 +1,13 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
6 | + android:shape="rectangle"> | ||
7 | + <gradient android:startColor="#343333" android:centerColor="#262525" | ||
8 | + android:endColor="#000000" android:angle="-90" /> | ||
9 | + | ||
10 | + <corners android:radius="10dp" /> | ||
11 | + | ||
12 | + | ||
13 | +</shape> | ||
0 | \ No newline at end of file | 14 | \ No newline at end of file |
atualizacao-cadastral-master/res/drawable/vermelho_bg.xml
0 → 100644
@@ -0,0 +1,19 @@ | @@ -0,0 +1,19 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | + <!-- | ||
3 | + Copyright (c) Josh Clemm 2010 | ||
4 | + --> | ||
5 | +<!-- Usado na imagem REVISITADO da tela de Hidrometro --> | ||
6 | + | ||
7 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
8 | + android:shape="rectangle"> | ||
9 | + <gradient android:startColor="#a90000" android:centerColor="#810100" | ||
10 | + android:endColor="#560001" android:angle="-90" /> | ||
11 | + | ||
12 | + | ||
13 | + <corners android:radius="3dp"/> | ||
14 | + | ||
15 | + <stroke | ||
16 | + android:width="1dp" | ||
17 | + android:color="#000000" /> | ||
18 | + | ||
19 | +</shape> | ||
0 | \ No newline at end of file | 20 | \ No newline at end of file |
atualizacao-cadastral-master/res/layout/arquivo_adapter.xml
0 → 100644
@@ -0,0 +1,5 @@ | @@ -0,0 +1,5 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" | ||
3 | + android:layout_width="fill_parent" android:layout_height="fill_parent"> | ||
4 | + <TextView android:id="@+id/name" android:textColor="#fff" android:layout_width="wrap_content" android:layout_height="wrap_content"/> | ||
5 | +</LinearLayout> | ||
0 | \ No newline at end of file | 6 | \ No newline at end of file |
atualizacao-cadastral-master/res/layout/arquivo_dividido_selecionar.xml
0 → 100644
@@ -0,0 +1,27 @@ | @@ -0,0 +1,27 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" | ||
3 | + android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#303030" > | ||
4 | + | ||
5 | + <ImageView android:layout_marginTop="5px" android:layout_width="fill_parent" | ||
6 | + android:layout_height="wrap_content" /> | ||
7 | + <!-- android:src="@drawable/line" --> | ||
8 | + | ||
9 | + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
10 | + android:orientation="horizontal" | ||
11 | + android:layout_marginBottom="10px" | ||
12 | + android:layout_width="wrap_content" | ||
13 | + android:layout_height="wrap_content"> | ||
14 | + | ||
15 | + <ImageView android:layout_marginTop="10px" | ||
16 | + android:layout_width="wrap_content" | ||
17 | + android:layout_height="wrap_content" /> | ||
18 | + <!-- android:src="@drawable/offline" --> | ||
19 | + | ||
20 | + <TextView android:padding="10px" android:text="@string/str_file_ad_title" | ||
21 | + android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="@color/white" /> | ||
22 | + </LinearLayout> | ||
23 | + | ||
24 | + <ListView android:padding="10px" android:id="@+id/listFiles" android:layout_width="fill_parent" android:layout_height="wrap_content" android:dividerHeight="1sp" android:divider="@color/white" /> | ||
25 | + | ||
26 | +</LinearLayout> | ||
27 | + | ||
0 | \ No newline at end of file | 28 | \ No newline at end of file |
atualizacao-cadastral-master/res/layout/arquivo_selecionar.xml
0 → 100644
@@ -0,0 +1,27 @@ | @@ -0,0 +1,27 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" | ||
3 | + android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#303030" > | ||
4 | + | ||
5 | + <ImageView android:layout_marginTop="5px" android:layout_width="fill_parent" | ||
6 | + android:layout_height="wrap_content" /> | ||
7 | + <!-- android:src="@drawable/line" --> | ||
8 | + | ||
9 | + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
10 | + android:orientation="horizontal" | ||
11 | + android:layout_marginBottom="10px" | ||
12 | + android:layout_width="wrap_content" | ||
13 | + android:layout_height="wrap_content"> | ||
14 | + | ||
15 | + <ImageView android:layout_marginTop="10px" | ||
16 | + android:layout_width="wrap_content" | ||
17 | + android:layout_height="wrap_content" /> | ||
18 | + <!-- android:src="@drawable/offline" --> | ||
19 | + | ||
20 | + <TextView android:padding="10px" android:text="@string/str_file_selector_title" | ||
21 | + android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="@color/white" /> | ||
22 | + </LinearLayout> | ||
23 | + | ||
24 | + <ListView android:padding="10px" android:id="@+id/listFiles" android:layout_width="fill_parent" android:layout_height="wrap_content" android:dividerHeight="1sp" android:divider="@color/white" /> | ||
25 | + | ||
26 | +</LinearLayout> | ||
27 | + | ||
0 | \ No newline at end of file | 28 | \ No newline at end of file |
atualizacao-cadastral-master/res/layout/categoria_imovel_inserir.xml
0 → 100644
@@ -0,0 +1,98 @@ | @@ -0,0 +1,98 @@ | ||
1 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | + xmlns:tools="http://schemas.android.com/tools" | ||
3 | + android:layout_width="match_parent" | ||
4 | + android:layout_height="match_parent" | ||
5 | + android:scrollbars="vertical" | ||
6 | + tools:context=".CategoriaImovelInserirActivity" | ||
7 | + android:background="#D0D0D0"> | ||
8 | + | ||
9 | + <LinearLayout | ||
10 | + android:layout_width="fill_parent" | ||
11 | + android:layout_height="wrap_content" | ||
12 | + android:orientation="vertical" | ||
13 | + android:scrollbars="vertical" > | ||
14 | + | ||
15 | + <TextView | ||
16 | + android:layout_width="fill_parent" | ||
17 | + android:layout_height="25dp" | ||
18 | + android:background="#808080" | ||
19 | + android:gravity="center_vertical" | ||
20 | + android:paddingLeft="@dimen/padding_medium" | ||
21 | + android:text="@string/str_preencher_campos" | ||
22 | + android:textColor="#000000" | ||
23 | + android:textSize="17sp" /> | ||
24 | + | ||
25 | + <TableLayout | ||
26 | + android:layout_width="fill_parent" | ||
27 | + android:layout_height="wrap_content" | ||
28 | + android:orientation="vertical" | ||
29 | + android:scrollbars="vertical" | ||
30 | + android:paddingRight="20dp"> | ||
31 | + | ||
32 | + <!-- Categoria --> | ||
33 | + <TableRow android:paddingTop="8dp" android:paddingBottom="5dp" > | ||
34 | + | ||
35 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
36 | + android:textStyle="bold" android:text="@string/str_categoria_imovel" android:id="@+id/categoriaImovel" /> | ||
37 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
38 | + android:id="@+id/spnCategoriaImovel" android:layout_width="wrap_content" /> | ||
39 | + </TableRow> | ||
40 | + | ||
41 | + <!-- SubCategoria --> | ||
42 | + <TableRow android:paddingBottom="5dp" > | ||
43 | + | ||
44 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
45 | + android:textStyle="bold" android:text="@string/str_subcategoria_imovel" android:id="@+id/subCategoriaImovel" /> | ||
46 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
47 | + android:id="@+id/spnSubCategoriaImovel" android:layout_width="wrap_content" /> | ||
48 | + </TableRow> | ||
49 | + | ||
50 | + <!-- Quantidade de Economias --> | ||
51 | + <TableRow > | ||
52 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
53 | + android:textStyle="bold" android:text="@string/str_quantidade_economias" android:id="@+id/quantidadeEconomias" /> | ||
54 | + <EditText style="@style/editAba" android:inputType="number" android:id="@+id/edtQtdEconomias" android:layout_weight="1" android:maxLength="4" /> | ||
55 | + </TableRow> | ||
56 | + | ||
57 | + </TableLayout> | ||
58 | + | ||
59 | + <View | ||
60 | + android:id="@+id/linha2" | ||
61 | + android:layout_width="fill_parent" | ||
62 | + android:layout_height="2dp" | ||
63 | + android:background="#808080" | ||
64 | + android:layout_marginLeft="20dp" | ||
65 | + android:layout_marginRight="20dp" /> | ||
66 | + | ||
67 | + <Space android:layout_height="20dp" android:layout_width="fill_parent"/> | ||
68 | + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
69 | + android:orientation="horizontal" android:layout_width="fill_parent" | ||
70 | + android:layout_height="fill_parent" android:paddingLeft="20dp" | ||
71 | + android:paddingRight="20dp" | ||
72 | + android:paddingTop="5dp" android:gravity="center_vertical"> | ||
73 | + | ||
74 | + <!-- Cancelar --> | ||
75 | + <Button android:text="@string/str_cancelar" | ||
76 | + android:textColor="#000000" | ||
77 | + android:id="@+id/btCancelar" | ||
78 | + android:layout_gravity="left" | ||
79 | + android:layout_height="wrap_content" | ||
80 | + android:layout_width="100dp" | ||
81 | + android:background="@drawable/botao_bg_selector" /> | ||
82 | + | ||
83 | + <Space | ||
84 | + android:layout_width="360dp" | ||
85 | + android:layout_height="wrap_content" /> | ||
86 | + | ||
87 | + <!-- Inserir --> | ||
88 | + <Button android:text="@string/str_inserir" | ||
89 | + android:textColor="#000000" | ||
90 | + android:id="@+id/btInserir" | ||
91 | + android:layout_gravity="right" | ||
92 | + android:layout_height="wrap_content" | ||
93 | + android:layout_width="100dp" | ||
94 | + android:background="@drawable/botao_bg_selector" /> | ||
95 | + </LinearLayout> | ||
96 | + </LinearLayout> | ||
97 | + | ||
98 | +</ScrollView> | ||
0 | \ No newline at end of file | 99 | \ No newline at end of file |
@@ -0,0 +1,209 @@ | @@ -0,0 +1,209 @@ | ||
1 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | + xmlns:tools="http://schemas.android.com/tools" | ||
3 | + android:layout_width="match_parent" | ||
4 | + android:layout_height="match_parent" | ||
5 | + tools:context=".ClienteAbaActivity" | ||
6 | + android:scrollbars="vertical" > | ||
7 | + | ||
8 | + <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
9 | + android:layout_width="match_parent" | ||
10 | + android:layout_height="wrap_content" | ||
11 | + android:shrinkColumns="3" | ||
12 | + android:paddingTop="8dp" > | ||
13 | + | ||
14 | + <LinearLayout android:layout_width="fill_parent" | ||
15 | + android:layout_height="wrap_content" | ||
16 | + android:orientation="horizontal" > | ||
17 | + | ||
18 | + <!-- Tipo de Pessoa --> | ||
19 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
20 | + android:textStyle="bold" android:text="@string/str_pessoa_tipo" android:id="@+id/clienteTipo" android:layout_marginRight="50dip"/> | ||
21 | + | ||
22 | + <RadioGroup | ||
23 | + android:id="@+id/radioGroupPessoaTipo" android:orientation="horizontal" | ||
24 | + android:layout_width="fill_parent" | ||
25 | + android:layout_height="wrap_content" > | ||
26 | + | ||
27 | + <RadioButton | ||
28 | + android:id="@+id/radioPessoaFisica" | ||
29 | + android:layout_width="wrap_content" | ||
30 | + android:layout_height="wrap_content" | ||
31 | + android:textStyle="bold" | ||
32 | + android:text="@string/str_pessoa_fisica" /> | ||
33 | + | ||
34 | + <RadioButton | ||
35 | + android:id="@+id/radioPessoaJuridica" | ||
36 | + android:layout_width="wrap_content" | ||
37 | + android:layout_height="wrap_content" | ||
38 | + android:text="@string/str_pessoa_juridica" | ||
39 | + android:textStyle="bold" /> | ||
40 | + | ||
41 | + </RadioGroup> | ||
42 | + </LinearLayout> | ||
43 | + | ||
44 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
45 | + | ||
46 | + <!-- Cliente Tipo --> | ||
47 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
48 | + android:textStyle="bold" android:text="@string/str_cliente_tipo" android:layout_marginRight="48dip" android:id="@+id/tipo" /> | ||
49 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
50 | + android:id="@+id/spnTipoCliente" android:layout_width="0dp"/> | ||
51 | + </LinearLayout> | ||
52 | + | ||
53 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
54 | + <!-- Documento Principal --> | ||
55 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
56 | + android:textStyle="bold" android:text="@string/str_cpf_cnpj" android:id="@+id/tvCpfCnpj" android:layout_marginRight="88dip"/> | ||
57 | + <EditText style="@style/editAba" android:inputType="number" android:id="@+id/edtCpfCnpj" android:textColor="#000000" /> | ||
58 | + </LinearLayout> | ||
59 | + | ||
60 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
61 | + <!-- Nome do Cliente --> | ||
62 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
63 | + android:textStyle="bold" android:text="@string/str_nome_cliente" android:id="@+id/nomeCliente" android:layout_marginRight="41dip"/> | ||
64 | + <EditText style="@style/editAba" android:id="@+id/edtNomeCliente" android:maxLength="100" android:inputType="textCapCharacters" /> | ||
65 | + </LinearLayout> | ||
66 | + | ||
67 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
68 | + <!-- Data de Nascimento do Cliente --> | ||
69 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
70 | + android:textStyle="bold" android:text="@string/str_data_nascimento" android:id="@+id/dataNascimento" android:layout_marginRight="6dip"/> | ||
71 | + <EditText android:paddingRight="5dip" android:paddingLeft="5dip" style="@style/editRG" android:inputType="number" android:id="@+id/edtDataNascimento" android:textColor="#000000" /> | ||
72 | + </LinearLayout> | ||
73 | + | ||
74 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
75 | + <!-- Pessoa Sexo --> | ||
76 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
77 | + android:textStyle="bold" android:text="@string/str_pessoa_sexo" android:id="@+id/pessoaSexo" android:layout_marginRight="140dip"/> | ||
78 | + | ||
79 | + <RadioGroup | ||
80 | + android:id="@+id/rgOpcoesPessoaSexo" android:orientation="horizontal" | ||
81 | + android:layout_width="fill_parent" | ||
82 | + android:layout_height="wrap_content" > | ||
83 | + | ||
84 | + <RadioButton | ||
85 | + android:id="@+id/radioMasculino" | ||
86 | + android:layout_width="wrap_content" | ||
87 | + android:layout_height="wrap_content" | ||
88 | + android:textStyle="bold" | ||
89 | + android:text="@string/str_masculino" /> | ||
90 | + | ||
91 | + <RadioButton | ||
92 | + android:id="@+id/radioFeminino" | ||
93 | + android:layout_width="wrap_content" | ||
94 | + android:layout_height="wrap_content" | ||
95 | + android:textStyle="bold" | ||
96 | + android:text="@string/str_feminino" /> | ||
97 | + </RadioGroup> | ||
98 | + </LinearLayout> | ||
99 | + | ||
100 | + <!-- Linha --> | ||
101 | + <LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" android:paddingLeft="35dp" android:paddingRight="35dp" | ||
102 | + android:paddingBottom="30dp" android:paddingTop="30dp"> | ||
103 | + <View | ||
104 | + android:id="@+id/linha" | ||
105 | + android:layout_width="fill_parent" | ||
106 | + android:layout_height="2dp" | ||
107 | + android:paddingLeft="20dp" | ||
108 | + android:paddingRight="20dp" | ||
109 | + android:background="#A8A8A8" | ||
110 | + /> | ||
111 | + | ||
112 | + </LinearLayout> | ||
113 | + | ||
114 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
115 | + <!-- RG --> | ||
116 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
117 | + android:textStyle="bold" android:text="@string/str_numero_rg" android:id="@+id/rg" android:layout_marginRight="158dip"/> | ||
118 | + <EditText style="@style/editAba" android:inputType="number" android:id="@+id/edtRg" android:paddingRight="10dip" android:maxLength="13"/> | ||
119 | + </LinearLayout> | ||
120 | + | ||
121 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
122 | + <!-- Órgão Expedidor --> | ||
123 | + | ||
124 | + <TextView | ||
125 | + android:id="@+id/orgaoExpedidor" | ||
126 | + style="@style/labelAba" | ||
127 | + android:layout_width="wrap_content" | ||
128 | + android:layout_height="wrap_content" | ||
129 | + android:layout_marginRight="41dip" | ||
130 | + android:text="@string/str_orgao_expedidor" | ||
131 | + android:textStyle="bold" /> | ||
132 | + | ||
133 | + <Spinner android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
134 | + android:id="@+id/spnOrgaoExpedidor" android:layout_width="wrap_content" /> | ||
135 | + | ||
136 | + <!-- Data Emissão RG --> | ||
137 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
138 | + android:textStyle="bold" android:text="@string/str_data_emissao_rg" android:id="@+id/dataEmissaoRg" android:layout_marginRight="5dip"/> | ||
139 | + <EditText style="@style/editDataEmissao" android:inputType="number" android:id="@+id/edtDataEmissaoRg" android:textColor="#000000" android:layout_width="145dp" /> | ||
140 | + </LinearLayout> | ||
141 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
142 | + <!-- UF --> | ||
143 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
144 | + android:textStyle="bold" android:text="@string/str_unidade_federacao" android:id="@+id/uf" android:paddingRight="150dip"/> | ||
145 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dip" | ||
146 | + android:id="@+id/spnUF" android:layout_width="0dip" /> | ||
147 | + </LinearLayout> | ||
148 | + <!-- Linha --> | ||
149 | + <LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" | ||
150 | + android:layout_height="fill_parent" android:paddingLeft="35dp" android:paddingRight="35dp" | ||
151 | + android:paddingBottom="30dp" android:paddingTop="30dp"> | ||
152 | + <View | ||
153 | + android:id="@+id/linha2" | ||
154 | + android:layout_width="fill_parent" | ||
155 | + android:layout_height="2dp" | ||
156 | + android:paddingLeft="20dp" | ||
157 | + android:paddingRight="20dp" | ||
158 | + android:background="#A8A8A8" | ||
159 | + /> | ||
160 | + | ||
161 | + </LinearLayout> | ||
162 | + | ||
163 | + <!-- Fone Tipo --> | ||
164 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> | ||
165 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
166 | + android:textStyle="bold" android:text="@string/str_fone_tipo" android:id="@+id/foneTipo" android:layout_marginRight="34dip"/> | ||
167 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
168 | + android:id="@+id/spnFoneTipo" android:layout_width="0dp" /> | ||
169 | + </LinearLayout> | ||
170 | + | ||
171 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
172 | + | ||
173 | + <!-- Telefone --> | ||
174 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
175 | + android:textStyle="bold" android:text="@string/str_numero_fone" android:id="@+id/numeroFone" | ||
176 | + android:layout_marginRight="120dip"/> | ||
177 | + <EditText style="@style/editTelefone" android:inputType="number" | ||
178 | + android:maxLength="13" android:id="@+id/edtTelefone" | ||
179 | + android:textColor="#000000" /> | ||
180 | + | ||
181 | + <Space android:layout_width="10dip" android:layout_height="wrap_content"/> | ||
182 | + | ||
183 | + <!-- Botão de Adicionar --> | ||
184 | + <Button android:text="@string/str_adicionar" android:textColor="#000000" android:id="@+id/btAdicionarTelefone" android:layout_gravity="center" | ||
185 | + android:layout_height="wrap_content" android:layout_width="wrap_content" android:padding="5dip" android:paddingLeft="12dip" android:paddingRight="12dip" android:background="@drawable/botao_bg_selector" /> | ||
186 | + </LinearLayout> | ||
187 | + | ||
188 | + <!-- TABELA TELEFONES --> | ||
189 | + <TableLayout android:id="@+id/tableLayoutTelefones" xmlns:android="http://schemas.android.com/apk/res/android" | ||
190 | + android:orientation="horizontal" android:layout_width="fill_parent" | ||
191 | + android:layout_height="fill_parent" android:background="@drawable/fundobranco_bg" android:layout_marginRight="10dip" android:layout_marginLeft="10dip"> | ||
192 | + | ||
193 | + <TextView android:text="@string/str_lista_telefones" style="@style/labelAbaMenor" android:textStyle="bold"/> | ||
194 | + | ||
195 | + <View | ||
196 | + android:id="@+id/linhaTelefone" | ||
197 | + android:layout_width="fill_parent" | ||
198 | + android:layout_height="2dp" android:layout_marginLeft="6dip" android:layout_marginRight="6dip" | ||
199 | + android:background="#394f73" /> | ||
200 | + | ||
201 | + <TableLayout android:id="@+id/tabelaTelefones" android:layout_width="fill_parent" | ||
202 | + android:layout_height="wrap_content" android:stretchColumns="0" /> | ||
203 | + </TableLayout> | ||
204 | + | ||
205 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:layout_marginBottom="250dp" /> | ||
206 | + | ||
207 | + | ||
208 | + </TableLayout> | ||
209 | +</ScrollView> | ||
0 | \ No newline at end of file | 210 | \ No newline at end of file |
atualizacao-cadastral-master/res/layout/download_arquivo_activity.xml
0 → 100644
@@ -0,0 +1,17 @@ | @@ -0,0 +1,17 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout | ||
3 | + xmlns:android="http://schemas.android.com/apk/res/android" | ||
4 | + android:layout_width="fill_parent" | ||
5 | + android:layout_height="fill_parent" android:orientation="vertical" android:background="@drawable/backgroundcompleto"> | ||
6 | + | ||
7 | + <TextView android:id="@+id/textViewProgress" android:text="@string/str_download_progress_titulo" android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
8 | + android:paddingLeft="5dip" android:layout_marginTop="7dip"></TextView> | ||
9 | + | ||
10 | + <ProgressBar android:id="@+id/progressPorLinha" android:layout_width="fill_parent" android:layout_marginTop="8px" | ||
11 | + android:layout_height="40px" android:layout_marginLeft="6dip" android:layout_marginRight="6dip" | ||
12 | + style="?android:attr/progressBarStyleHorizontal" android:max="100"/> | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | +</LinearLayout> |
atualizacao-cadastral-master/res/layout/endereco_aba.xml
0 → 100644
@@ -0,0 +1,60 @@ | @@ -0,0 +1,60 @@ | ||
1 | +<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | + xmlns:tools="http://schemas.android.com/tools" | ||
3 | + android:layout_width="match_parent" | ||
4 | + android:layout_height="match_parent" | ||
5 | + android:paddingRight="20dp" | ||
6 | + tools:context=".EnderecoAbaActivity" android:scrollbars="vertical"> | ||
7 | + <EditText android:layout_width="0dp" android:layout_height="0dp" android:visibility="visible"/> | ||
8 | + | ||
9 | + <TableRow android:paddingTop="10dp" > | ||
10 | + | ||
11 | + <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" | ||
12 | + android:text="@string/str_logradouro" android:id="@+id/logradouro" style="@style/labelAba" /> | ||
13 | + | ||
14 | + <AutoCompleteTextView android:id="@+id/autoComplete" android:layout_weight="1" android:completionThreshold="1" android:inputType="textCapCharacters"/> | ||
15 | + | ||
16 | + <!-- <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
17 | + android:id="@+id/spnLogradouro" /> --> | ||
18 | + | ||
19 | + <Button android:text="@string/str_inserir" | ||
20 | + android:textColor="#000000" | ||
21 | + android:id="@+id/btnInserirLogra" | ||
22 | + android:background="@drawable/botao_bg_selector" | ||
23 | + android:layout_gravity="bottom" | ||
24 | + android:layout_width="90dp" | ||
25 | + android:layout_marginBottom="5dp"/> | ||
26 | + </TableRow> | ||
27 | + | ||
28 | + <TableRow> | ||
29 | + <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" | ||
30 | + android:text="@string/str_referencia_numero" android:id="@+id/referenciaNum" style="@style/labelAba" /> | ||
31 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
32 | + android:id="@+id/spnReferenciaNum" /> | ||
33 | + <EditText android:layout_width="90dp" | ||
34 | + android:id="@+id/edtReferenciaNum" | ||
35 | + style="@style/editAba" android:maxLength="5" | ||
36 | + android:inputType="textCapCharacters" /> | ||
37 | + </TableRow> | ||
38 | + | ||
39 | + <TableRow> | ||
40 | + <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" | ||
41 | + android:text="@string/str_complemento" android:id="@+id/complemento" style="@style/labelAba" /> | ||
42 | + <EditText android:layout_weight="1" | ||
43 | + android:id="@+id/edtComplemento" | ||
44 | + style="@style/editAba" android:maxLength="25" android:inputType="textCapCharacters" /> | ||
45 | + </TableRow> | ||
46 | + | ||
47 | + <TableRow> | ||
48 | + <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" | ||
49 | + android:text="@string/str_bairro" android:id="@+id/bairro" style="@style/labelAba"/> | ||
50 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
51 | + android:id="@+id/spnBairro" /> | ||
52 | + </TableRow> | ||
53 | + | ||
54 | + <TableRow android:layout_marginBottom="225dip"> | ||
55 | + <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" | ||
56 | + android:text="@string/str_cep" android:id="@+id/cep" style="@style/labelAba" /> | ||
57 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
58 | + android:id="@+id/spnCep" /> | ||
59 | + </TableRow> | ||
60 | +</TableLayout> | ||
0 | \ No newline at end of file | 61 | \ No newline at end of file |
@@ -0,0 +1,124 @@ | @@ -0,0 +1,124 @@ | ||
1 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | + xmlns:tools="http://schemas.android.com/tools" | ||
3 | + android:layout_width="fill_parent" | ||
4 | + android:layout_height="fill_parent" | ||
5 | + android:gravity="center_horizontal" | ||
6 | + android:orientation="vertical" | ||
7 | + android:paddingLeft="20dp" | ||
8 | + android:paddingRight="20dp" | ||
9 | + android:scrollbars="vertical" | ||
10 | + tools:context=".FotosAbaActivity" > | ||
11 | + | ||
12 | + <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" | ||
13 | + android:layout_height="wrap_content" android:paddingTop="8dp"> | ||
14 | + | ||
15 | + <!-- Data --> | ||
16 | + <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" | ||
17 | + android:layout_height="wrap_content" > | ||
18 | + | ||
19 | + <TextView | ||
20 | + android:layout_width="wrap_content" | ||
21 | + android:layout_height="wrap_content" | ||
22 | + android:text="@string/str_data" | ||
23 | + android:textSize="@dimen/padding_large" | ||
24 | + android:textStyle="bold" /> | ||
25 | + | ||
26 | + <TextView | ||
27 | + android:id="@+id/tvData" | ||
28 | + android:layout_width="150dp" | ||
29 | + android:layout_height="wrap_content" | ||
30 | + android:textSize="@dimen/padding_large" /> | ||
31 | + | ||
32 | + </LinearLayout> | ||
33 | + | ||
34 | + <TableLayout android:paddingTop="8dp" android:layout_width="match_parent" android:layout_height="wrap_content"> | ||
35 | + <TableRow android:gravity="center_vertical"> | ||
36 | + <!-- Frente da Casa --> | ||
37 | + <LinearLayout android:id="@+id/llFrenteCasa" android:orientation="horizontal" | ||
38 | + android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_vertical"> | ||
39 | + | ||
40 | + <ImageView android:id="@+id/imgFrenteCasa" android:contentDescription="@string/str_frente_casa" | ||
41 | + android:layout_width="wrap_content" android:layout_height="wrap_content" /> | ||
42 | + | ||
43 | + <TextView | ||
44 | + android:id="@+id/tvFrenteCasa" | ||
45 | + android:layout_width="fill_parent" | ||
46 | + android:layout_height="wrap_content" | ||
47 | + android:text="@string/str_frente_casa" | ||
48 | + style="@style/labelAba" | ||
49 | + android:textStyle="bold" | ||
50 | + android:paddingLeft="6dp"/> | ||
51 | + | ||
52 | + </LinearLayout> | ||
53 | + | ||
54 | + <Button | ||
55 | + android:id="@+id/btnExcluirFrenteCasa" | ||
56 | + android:layout_width="90dp" | ||
57 | + android:layout_height="wrap_content" | ||
58 | + android:layout_gravity="bottom" | ||
59 | + android:layout_marginBottom="5dp" | ||
60 | + android:background="@drawable/botao_bg_selector" | ||
61 | + android:text="@string/str_excluir" | ||
62 | + android:textColor="#000000" /> | ||
63 | + | ||
64 | + </TableRow> | ||
65 | + <ImageView android:src="@drawable/line" android:layout_width="fill_parent" android:layout_height="wrap_content" /> | ||
66 | + | ||
67 | + <TableRow android:gravity="center_vertical"> | ||
68 | + | ||
69 | + <!-- Hidrômetro --> | ||
70 | + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" | ||
71 | + android:id="@+id/llHidrometro" android:layout_weight="1" android:layout_height="wrap_content" android:gravity="center_vertical"> | ||
72 | + | ||
73 | + <ImageView android:id="@+id/imgHidrometro" android:contentDescription="@string/str_hidrometro" | ||
74 | + android:layout_width="wrap_content" android:layout_height="wrap_content" /> | ||
75 | + | ||
76 | + <TextView | ||
77 | + android:id="@+id/tvHidrometro" | ||
78 | + android:layout_width="fill_parent" | ||
79 | + android:layout_height="wrap_content" | ||
80 | + android:text="@string/str_hidrometro" | ||
81 | + android:textStyle="bold" | ||
82 | + style="@style/labelAba" | ||
83 | + android:paddingLeft="6dp" /> | ||
84 | + | ||
85 | + </LinearLayout> | ||
86 | + | ||
87 | + <Button | ||
88 | + android:id="@+id/btnExcluirHidrometro" | ||
89 | + android:layout_width="90dp" | ||
90 | + android:layout_height="wrap_content" | ||
91 | + android:layout_gravity="bottom" | ||
92 | + android:layout_marginBottom="5dp" | ||
93 | + android:background="@drawable/botao_bg_selector" | ||
94 | + android:text="@string/str_excluir" | ||
95 | + android:textColor="#000000" /> | ||
96 | + | ||
97 | + </TableRow> | ||
98 | + | ||
99 | + <ImageView android:src="@drawable/line" android:layout_width="fill_parent" android:layout_height="wrap_content" /> | ||
100 | + </TableLayout> | ||
101 | + | ||
102 | + <!-- Ocorrencias --> | ||
103 | + <Spinner android:layout_width="fill_parent" android:layout_marginTop="10dp" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
104 | + android:id="@+id/spnOcorrencias" android:paddingBottom="5dp" /> | ||
105 | + | ||
106 | + <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
107 | + android:orientation="horizontal" android:layout_width="fill_parent" | ||
108 | + android:layout_height="wrap_content" android:background="@drawable/fundobranco_bg" > | ||
109 | + | ||
110 | + <TextView android:text="@string/str_lista_ocorrencias" | ||
111 | + android:paddingTop="5dp" android:textStyle="bold" style="@style/labelAbaMenor"/> | ||
112 | + | ||
113 | + <View | ||
114 | + android:id="@+id/linha" | ||
115 | + android:layout_width="fill_parent" | ||
116 | + android:layout_height="2dp" | ||
117 | + android:background="#394f73" | ||
118 | + /> | ||
119 | + | ||
120 | + <TableLayout android:id="@+id/tabelaOcorrencias" android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
121 | + android:stretchColumns="0" /> | ||
122 | + </TableLayout> | ||
123 | + </LinearLayout> | ||
124 | +</ScrollView> | ||
0 | \ No newline at end of file | 125 | \ No newline at end of file |
@@ -0,0 +1,136 @@ | @@ -0,0 +1,136 @@ | ||
1 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | + xmlns:tools="http://schemas.android.com/tools" | ||
3 | + android:layout_width="match_parent" | ||
4 | + android:layout_height="match_parent" | ||
5 | + tools:context=".ImovelAbaActivity" android:scrollbars="vertical" > | ||
6 | + | ||
7 | + <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
8 | + android:layout_width="match_parent" | ||
9 | + android:layout_height="wrap_content" | ||
10 | + android:shrinkColumns="3" > | ||
11 | + | ||
12 | + <LinearLayout android:paddingTop="8dp" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
13 | + <!-- Perfil do Imóvel --> | ||
14 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
15 | + android:textStyle="bold" android:text="@string/str_perfil_imovel" android:id="@+id/perfilImovel" android:layout_marginRight="180dip"/> | ||
16 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
17 | + android:id="@+id/spnPerfilImovel" android:layout_width="0dp" /> | ||
18 | + </LinearLayout> | ||
19 | + | ||
20 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
21 | + <!-- Tarifa Social --> | ||
22 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
23 | + android:textStyle="bold" android:text="@string/str_tarifa_social" android:id="@+id/tarifaSocial" android:layout_marginRight="39dip"/> | ||
24 | + <RadioGroup android:id="@+id/radioGroupTarifaSocial" android:orientation="horizontal" | ||
25 | + android:layout_width="fill_parent" | ||
26 | + android:layout_height="wrap_content" > | ||
27 | + | ||
28 | + <RadioButton android:id="@+id/radioTarifaSocialSim" | ||
29 | + android:layout_width="wrap_content" | ||
30 | + android:layout_height="wrap_content" | ||
31 | + android:textStyle="bold" | ||
32 | + android:text="@string/str_tarifa_social_sim" /> | ||
33 | + | ||
34 | + <RadioButton android:id="@+id/radioTarifaSocialNao" | ||
35 | + android:layout_width="wrap_content" | ||
36 | + android:layout_height="wrap_content" | ||
37 | + android:textStyle="bold" | ||
38 | + android:text="@string/str_tarifa_social_nao" /> | ||
39 | + </RadioGroup> | ||
40 | + </LinearLayout> | ||
41 | + | ||
42 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > | ||
43 | + <!-- Numero Medidor de Energia --> | ||
44 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
45 | + android:textStyle="bold" android:text="@string/str_numero_medidor_energia" android:id="@+id/medidorEnergia" android:layout_marginRight="38dip"/> | ||
46 | + <EditText style="@style/editAbaMedio" android:id="@+id/edtNumMedidorEnergia" android:textColor="#000000" android:maxLength="10" android:inputType="textCapCharacters"/> | ||
47 | + </LinearLayout> | ||
48 | + | ||
49 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> | ||
50 | + | ||
51 | + <!-- Numero de Moradores --> | ||
52 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
53 | + android:textStyle="bold" android:text="@string/str_numero_moradores" android:id="@+id/numeroMoradores" android:layout_marginRight="58dip"/> | ||
54 | + <EditText style="@style/editAbaMenor" android:inputType="number" android:id="@+id/edtNumMoradores" android:textColor="#000000" android:maxLength="4" /> | ||
55 | + </LinearLayout> | ||
56 | + | ||
57 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> | ||
58 | + <!-- Pavimento Rua --> | ||
59 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
60 | + android:textStyle="bold" android:text="@string/str_pavimento_rua" android:id="@+id/pavimentoRua" android:layout_marginRight="95dip" /> | ||
61 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" | ||
62 | + android:id="@+id/spnPavimentoRua" android:layout_width="0dp" /> | ||
63 | + </LinearLayout> | ||
64 | + | ||
65 | + <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> | ||
66 | + <!-- Pavimento Calçada --> | ||
67 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
68 | + android:textStyle="bold" android:text="@string/str_pavimento_calcada" android:layout_marginRight="58dip" android:id="@+id/pavimentoCalcada" /> | ||
69 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" android:layout_width="0dp" | ||
70 | + android:id="@+id/spnPavimentoCalcada" /> | ||
71 | + </LinearLayout> | ||
72 | + | ||
73 | + <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> | ||
74 | + <!-- Fonte de Abastecimento --> | ||
75 | + <TextView android:layout_width="wrap_content" style="@style/labelAba" android:layout_height="wrap_content" | ||
76 | + android:textStyle="bold" android:text="@string/str_fonte_abastecimento" android:layout_marginRight="17dip" android:id="@+id/fonteAbastecimento" /> | ||
77 | + <Spinner android:layout_weight="1" android:layout_marginBottom="10dp" android:layout_height="60dp" android:layout_width="0dp" | ||
78 | + android:id="@+id/spnFonteAbastecimento" /> | ||
79 | + </LinearLayout> | ||
80 | + | ||
81 | + <!-- Linha --> | ||
82 | + <LinearLayout android:layout_width="fill_parent" android:orientation="horizontal" | ||
83 | + android:layout_height="fill_parent" android:paddingLeft="35dp" android:paddingRight="35dp" | ||
84 | + android:paddingBottom="30dp" android:paddingTop="30dp"> | ||
85 | + <View | ||
86 | + android:id="@+id/linha" | ||
87 | + android:layout_width="fill_parent" | ||
88 | + android:layout_height="2dp" | ||
89 | + android:paddingLeft="20dp" | ||
90 | + android:paddingRight="20dp" | ||
91 | + android:background="#A8A8A8" | ||
92 | + /> | ||
93 | + | ||
94 | + </LinearLayout> | ||
95 | + | ||
96 | + <!-- TABELA CATEGORIAS --> | ||
97 | + <TableLayout android:id="@+id/tableLayoutCategorias" android:layout_marginLeft="10dip" android:layout_marginRight="10dip" | ||
98 | + android:orientation="horizontal" android:layout_width="fill_parent" | ||
99 | + android:layout_height="fill_parent" android:background="@drawable/fundobranco_bg" android:stretchColumns="*" > | ||
100 | + | ||
101 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> | ||
102 | + <TextView android:paddingTop="10dip" android:layout_width="wrap_content" android:text="@string/str_lista_categorias" style="@style/labelAbaMenor" android:textStyle="bold" android:layout_marginLeft="10dip"/> | ||
103 | + | ||
104 | + <Space android:layout_width="350dip" android:layout_height="wrap_content"/> | ||
105 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="10dp"> | ||
106 | + <Button android:text="@string/str_adicionar" android:textColor="#ffffff" android:gravity="center" android:id="@+id/btAdicionarCategoria" android:layout_gravity="right" | ||
107 | + android:layout_height="40dip" android:layout_width="wrap_content" android:background="@drawable/bt_azul" android:paddingLeft="12dip" android:paddingRight="12dip" /> | ||
108 | + </LinearLayout> | ||
109 | + </LinearLayout> | ||
110 | + <!-- <TableLayout android:id="@+id/tabelaCategorias" android:layout_width="fill_parent" | ||
111 | + android:layout_height="wrap_content" android:stretchColumns="0" /> --> | ||
112 | + | ||
113 | + <TableRow android:paddingTop="10dip"> | ||
114 | + <TextView android:text="@string/str_label_categorias" android:textStyle="bold" style="@style/labelAba" /> | ||
115 | + | ||
116 | + <TextView android:text="@string/str_label_sub_categorias" android:textStyle="bold" style="@style/labelAba" android:paddingLeft="80dp" android:layout_width="240dp"/> | ||
117 | + | ||
118 | + <TextView android:text="@string/str_label_qtde_economias" android:textStyle="bold" style="@style/labelAba" /> | ||
119 | + | ||
120 | + <!-- <TextView android:text="@string/str_label_opcao" android:textStyle="bold" style="@style/labelAba" /> --> | ||
121 | + </TableRow> | ||
122 | + | ||
123 | + <View android:id="@+id/linhaCategoria" | ||
124 | + android:layout_width="fill_parent" | ||
125 | + android:layout_height="2dp" | ||
126 | + android:background="#808080" /> | ||
127 | + | ||
128 | + </TableLayout> | ||
129 | + | ||
130 | + <Space android:layout_height="20dp" android:layout_width="fill_parent"/> | ||
131 | + <View android:id="@+id/linhaCategoria2" android:layout_width="fill_parent" android:layout_height="2dp" android:background="#808080" /> | ||
132 | + | ||
133 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:layout_marginBottom="250dp" /> | ||
134 | + | ||
135 | + </TableLayout> | ||
136 | +</ScrollView> | ||
0 | \ No newline at end of file | 137 | \ No newline at end of file |
@@ -0,0 +1,215 @@ | @@ -0,0 +1,215 @@ | ||
1 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | + xmlns:tools="http://schemas.android.com/tools" | ||
3 | + android:layout_width="match_parent" | ||
4 | + android:layout_height="match_parent" | ||
5 | + android:orientation="vertical" | ||
6 | + android:paddingRight="20dp" | ||
7 | + android:scrollbars="vertical" | ||
8 | + tools:context=".LigacaoAbaActivity"> | ||
9 | + | ||
10 | + <TableLayout | ||
11 | + android:layout_width="fill_parent" | ||
12 | + android:layout_height="wrap_content" | ||
13 | + android:orientation="horizontal" | ||
14 | + android:paddingTop="8dp" > | ||
15 | + | ||
16 | + <!-- Situacao de Agua --> | ||
17 | + <TableRow> | ||
18 | + | ||
19 | + <TextView | ||
20 | + style="@style/labelAba" | ||
21 | + android:layout_width="wrap_content" | ||
22 | + android:layout_height="wrap_content" | ||
23 | + android:text="@string/str_situacao_agua" | ||
24 | + android:textStyle="bold" /> | ||
25 | + | ||
26 | + <Spinner | ||
27 | + android:id="@+id/spnSituacaoAgua" | ||
28 | + android:layout_width="fill_parent" | ||
29 | + android:layout_height="60dp" | ||
30 | + android:layout_weight="1" | ||
31 | + android:prompt="@string/str_situacao_agua" /> | ||
32 | + </TableRow> | ||
33 | + | ||
34 | + <!-- Situacao de Esgoto --> | ||
35 | + <TableRow> | ||
36 | + | ||
37 | + <TextView | ||
38 | + style="@style/labelAba" | ||
39 | + android:layout_width="wrap_content" | ||
40 | + android:layout_height="wrap_content" | ||
41 | + android:text="@string/str_situacao_esgoto" | ||
42 | + android:textStyle="bold" /> | ||
43 | + | ||
44 | + <Spinner | ||
45 | + android:id="@+id/spnSituacaoEsgoto" | ||
46 | + android:layout_width="fill_parent" | ||
47 | + android:layout_height="60dp" | ||
48 | + android:layout_weight="1" | ||
49 | + android:prompt="@string/str_situacao_esgoto" /> | ||
50 | + </TableRow> | ||
51 | + | ||
52 | + <!-- Hidrometro Agua --> | ||
53 | + <TableRow> | ||
54 | + | ||
55 | + <TextView | ||
56 | + style="@style/labelAba" | ||
57 | + android:layout_width="wrap_content" | ||
58 | + android:layout_height="wrap_content" | ||
59 | + android:text="@string/str_hidrometro_agua" | ||
60 | + android:textStyle="bold" /> | ||
61 | + | ||
62 | + <RadioGroup | ||
63 | + android:id="@+id/radioGroupHidrAgua" | ||
64 | + android:layout_width="fill_parent" | ||
65 | + android:layout_height="fill_parent" | ||
66 | + android:orientation="horizontal" > | ||
67 | + | ||
68 | + <RadioButton | ||
69 | + android:id="@+id/radioHidrometroAguaSim" | ||
70 | + android:layout_width="wrap_content" | ||
71 | + android:layout_height="wrap_content" | ||
72 | + android:text="@string/str_sim" /> | ||
73 | + | ||
74 | + <RadioButton | ||
75 | + android:id="@+id/radioHidrometroAguaNao" | ||
76 | + android:layout_width="wrap_content" | ||
77 | + android:layout_height="wrap_content" | ||
78 | + android:text="@string/str_nao" /> | ||
79 | + </RadioGroup> | ||
80 | + </TableRow> | ||
81 | + | ||
82 | + <!-- Numero Hidrometro --> | ||
83 | + <TableRow> | ||
84 | + | ||
85 | + <TextView | ||
86 | + style="@style/labelAba" | ||
87 | + android:layout_width="wrap_content" | ||
88 | + android:layout_height="wrap_content" | ||
89 | + android:text="@string/str_numero_hidrometro" | ||
90 | + android:textStyle="bold" android:layout_marginRight="20dip"/> | ||
91 | + | ||
92 | + <EditText | ||
93 | + android:id="@+id/edtNumeroHidrometro" | ||
94 | + style="@style/editAba" | ||
95 | + android:layout_weight="1" android:maxLength="10" | ||
96 | + android:inputType="textCapCharacters" /> | ||
97 | + </TableRow> | ||
98 | + | ||
99 | + <!-- Local de Instalacao --> | ||
100 | + <TableRow android:gravity="center_vertical" > | ||
101 | + | ||
102 | + <TextView | ||
103 | + style="@style/labelAba" | ||
104 | + android:layout_width="wrap_content" | ||
105 | + android:layout_height="wrap_content" | ||
106 | + android:text="@string/str_local_instalacao" | ||
107 | + android:textStyle="bold" /> | ||
108 | + | ||
109 | + <Spinner | ||
110 | + android:id="@+id/spnLocalInstalacao" | ||
111 | + android:layout_width="fill_parent" | ||
112 | + android:layout_height="60dp" | ||
113 | + android:layout_weight="1" /> | ||
114 | + </TableRow> | ||
115 | + | ||
116 | + <!-- Tipo de Protecao --> | ||
117 | + | ||
118 | + <TableRow android:gravity="center_vertical" > | ||
119 | + | ||
120 | + <TextView | ||
121 | + style="@style/labelAba" | ||
122 | + android:layout_width="wrap_content" | ||
123 | + android:layout_height="wrap_content" | ||
124 | + android:text="@string/str_tipo_protecao" | ||
125 | + android:textStyle="bold" /> | ||
126 | + | ||
127 | + <Spinner | ||
128 | + android:id="@+id/spnTipoProtecao" | ||
129 | + android:layout_width="fill_parent" | ||
130 | + android:layout_height="60dp" | ||
131 | + android:layout_weight="1" /> | ||
132 | + </TableRow> | ||
133 | + | ||
134 | + <!-- Cavalete --> | ||
135 | + | ||
136 | + <TableRow> | ||
137 | + | ||
138 | + <TextView | ||
139 | + style="@style/labelAba" | ||
140 | + android:layout_width="wrap_content" | ||
141 | + android:layout_height="wrap_content" | ||
142 | + android:text="@string/str_cavalete" | ||
143 | + android:textStyle="bold" /> | ||
144 | + | ||
145 | + <RadioGroup | ||
146 | + android:id="@+id/radioGroupCavalete" | ||
147 | + android:layout_width="fill_parent" | ||
148 | + android:layout_height="fill_parent" | ||
149 | + android:orientation="horizontal" > | ||
150 | + | ||
151 | + <RadioButton | ||
152 | + android:id="@+id/radioCavaleteSim" | ||
153 | + android:layout_width="wrap_content" | ||
154 | + android:layout_height="wrap_content" | ||
155 | + android:text="@string/str_sim" /> | ||
156 | + | ||
157 | + <RadioButton | ||
158 | + android:id="@+id/radioCavaleteNao" | ||
159 | + android:layout_width="wrap_content" | ||
160 | + android:layout_height="wrap_content" | ||
161 | + android:text="@string/str_nao" /> | ||
162 | + </RadioGroup> | ||
163 | + </TableRow> | ||
164 | + | ||
165 | + <!-- Leitura --> | ||
166 | + | ||
167 | + <TableRow> | ||
168 | + | ||
169 | + <TextView | ||
170 | + style="@style/labelAba" | ||
171 | + android:layout_width="wrap_content" | ||
172 | + android:layout_height="wrap_content" | ||
173 | + android:text="@string/str_leitura" | ||
174 | + android:textStyle="bold" /> | ||
175 | + | ||
176 | + <EditText | ||
177 | + android:id="@+id/edtLeitura" | ||
178 | + style="@style/editAba" | ||
179 | + android:layout_weight="1" | ||
180 | + android:inputType="number" | ||
181 | + android:maxLength="8"/> | ||
182 | + </TableRow> | ||
183 | + | ||
184 | + <!-- Observacao --> | ||
185 | + | ||
186 | + <TableRow android:paddingBottom="5dp" > | ||
187 | + | ||
188 | + <TextView | ||
189 | + style="@style/labelAba" | ||
190 | + android:layout_width="wrap_content" | ||
191 | + android:layout_height="wrap_content" | ||
192 | + android:text="@string/str_observacao" | ||
193 | + android:textStyle="bold" /> | ||
194 | + </TableRow> | ||
195 | + | ||
196 | + <EditText | ||
197 | + android:id="@+id/edtObservacao" | ||
198 | + android:layout_height="200dp" | ||
199 | + android:layout_marginLeft="20dp" | ||
200 | + android:layout_weight="1" | ||
201 | + android:background="@drawable/fundobranco_bg" | ||
202 | + android:gravity="top" | ||
203 | + android:inputType="textMultiLine" | ||
204 | + android:maxLength="400" | ||
205 | + android:paddingLeft="10dp" | ||
206 | + android:paddingRight="10dp" | ||
207 | + android:paddingTop="5dp" /> | ||
208 | + | ||
209 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:layout_marginBottom="250dp" /> | ||
210 | + | ||
211 | + </TableLayout> | ||
212 | + | ||
213 | + | ||
214 | + | ||
215 | +</ScrollView> | ||
0 | \ No newline at end of file | 216 | \ No newline at end of file |
atualizacao-cadastral-master/res/layout/lista_relatorio_cadastrador_adapter.xml
0 → 100644
@@ -0,0 +1,89 @@ | @@ -0,0 +1,89 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | + | ||
3 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
4 | + android:layout_marginTop="5dip" | ||
5 | + android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
6 | + android:orientation="vertical" > | ||
7 | + | ||
8 | + <!-- Resumo Por cadastrador --> | ||
9 | + <LinearLayout android:minHeight="55dip" | ||
10 | + android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
11 | + android:orientation="horizontal" android:background="@drawable/fundocinza_bg" | ||
12 | + android:id="@+id/resumoPorCadastrador"> | ||
13 | + | ||
14 | + <TextView | ||
15 | + android:id="@+id/descricaoCadastrador" | ||
16 | + android:layout_width="wrap_content" | ||
17 | + android:layout_height="wrap_content" | ||
18 | + android:layout_marginTop="8dip" | ||
19 | + android:textColor="#000000" | ||
20 | + android:layout_marginLeft="4dip" | ||
21 | + android:textStyle="bold" | ||
22 | + android:textSize="20sp" | ||
23 | + android:layout_weight="0.4" /> | ||
24 | + | ||
25 | + <TextView | ||
26 | + android:id="@+id/percentualPorCadastrador" | ||
27 | + android:layout_width="wrap_content" | ||
28 | + android:layout_height="wrap_content" | ||
29 | + android:layout_marginTop="8dip" | ||
30 | + android:textColor="#000000" | ||
31 | + android:textStyle="bold" | ||
32 | + android:textSize="20sp" | ||
33 | + android:gravity="right" | ||
34 | + android:layout_marginRight="10dip"/> | ||
35 | + | ||
36 | + | ||
37 | + </LinearLayout> | ||
38 | + | ||
39 | + <!-- Detalhes da cadastrador--> | ||
40 | + <LinearLayout | ||
41 | + android:id="@+id/detalhesCadastrador" | ||
42 | + android:layout_width="fill_parent" | ||
43 | + android:layout_height="wrap_content" | ||
44 | + android:orientation="vertical" | ||
45 | + android:visibility="gone" | ||
46 | + android:background="@drawable/fundocinza_bg" | ||
47 | + android:layout_marginLeft="8dip" android:layout_marginRight="8dip"> | ||
48 | + | ||
49 | + <!-- Primeira parte detalhamento --> | ||
50 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
51 | + android:orientation="vertical" > | ||
52 | + | ||
53 | + <TextView | ||
54 | + android:id="@+id/totalImvAtualizado" | ||
55 | + android:layout_width="fill_parent" | ||
56 | + android:layout_height="wrap_content" | ||
57 | + android:layout_marginTop="20dip" | ||
58 | + android:text="TotalAtualizado" | ||
59 | + android:textColor="#000000" | ||
60 | + android:textSize="20sp" | ||
61 | + android:textStyle="bold" android:layout_marginLeft="4dip" android:layout_weight="0.4"/> | ||
62 | + | ||
63 | + <TextView | ||
64 | + android:id="@+id/totalImvIncluido" | ||
65 | + android:layout_width="fill_parent" | ||
66 | + android:layout_height="wrap_content" | ||
67 | + android:layout_marginTop="10dip" | ||
68 | + android:text="TotalImoveisIncluidos" | ||
69 | + android:textColor="#000000" | ||
70 | + android:textStyle="bold" | ||
71 | + android:textSize="20sp" | ||
72 | + android:layout_marginLeft="4dip" android:layout_weight="0.4"/> | ||
73 | + | ||
74 | + <TextView | ||
75 | + android:id="@+id/totalImvIVisitado" | ||
76 | + android:layout_width="fill_parent" | ||
77 | + android:layout_height="wrap_content" | ||
78 | + android:layout_marginTop="10dip" | ||
79 | + android:text="TotalImoveisVisitado" | ||
80 | + android:textColor="#000000" | ||
81 | + android:textStyle="bold" | ||
82 | + android:textSize="20sp" | ||
83 | + android:layout_marginLeft="4dip" android:layout_weight="0.4"/> | ||
84 | + | ||
85 | + </LinearLayout> | ||
86 | + | ||
87 | + </LinearLayout> | ||
88 | + | ||
89 | +</LinearLayout> |
atualizacao-cadastral-master/res/layout/lista_relatorio_ocorrencia_adapter.xml
0 → 100644
@@ -0,0 +1,90 @@ | @@ -0,0 +1,90 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | + | ||
3 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
4 | + android:layout_marginTop="5dip" | ||
5 | + android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
6 | + android:orientation="vertical" > | ||
7 | + | ||
8 | + <!-- Resumo Por Ocorrencia --> | ||
9 | + <LinearLayout android:minHeight="55dip" | ||
10 | + android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
11 | + android:orientation="horizontal" android:background="@drawable/fundocinza_bg" | ||
12 | + android:id="@+id/resumoPorOcorrencia"> | ||
13 | + | ||
14 | + <TextView | ||
15 | + android:id="@+id/descricaoOcorrencia" | ||
16 | + android:layout_width="wrap_content" | ||
17 | + android:layout_height="wrap_content" | ||
18 | + android:layout_marginTop="8dip" | ||
19 | + android:textColor="#000000" | ||
20 | + android:layout_marginLeft="4dip" | ||
21 | + android:textStyle="bold" | ||
22 | + android:textSize="15sp" | ||
23 | + android:layout_weight="0.4" /> | ||
24 | + | ||
25 | + <TextView | ||
26 | + android:id="@+id/percentualPorOcorrencia" | ||
27 | + android:layout_width="wrap_content" | ||
28 | + android:layout_height="wrap_content" | ||
29 | + android:layout_marginTop="8dip" | ||
30 | + android:textColor="#000000" | ||
31 | + android:textStyle="bold" | ||
32 | + android:textSize="20sp" | ||
33 | + android:gravity="right" | ||
34 | + android:layout_marginRight="10dip"/> | ||
35 | + | ||
36 | + | ||
37 | + </LinearLayout> | ||
38 | + | ||
39 | + <!-- Detalhes da Ocorrencia--> | ||
40 | + <LinearLayout | ||
41 | + android:id="@+id/detalhesOcorrencia" | ||
42 | + android:layout_width="fill_parent" | ||
43 | + android:layout_height="wrap_content" | ||
44 | + android:orientation="vertical" | ||
45 | + android:visibility="gone" | ||
46 | + android:background="@drawable/fundocinza_bg" | ||
47 | + android:layout_marginLeft="8dip" android:layout_marginRight="8dip"> | ||
48 | + | ||
49 | + <!-- Primeira parte detalhamento --> | ||
50 | + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
51 | + android:orientation="vertical" > | ||
52 | + | ||
53 | + <TextView | ||
54 | + android:id="@+id/totalImvAtualizados" | ||
55 | + android:layout_width="fill_parent" | ||
56 | + android:layout_height="wrap_content" | ||
57 | + android:layout_marginTop="20dip" | ||
58 | + android:text="TotalAtualizado" | ||
59 | + android:textColor="#000000" | ||
60 | + android:textSize="20sp" | ||
61 | + android:textStyle="bold" android:layout_marginLeft="4dip" android:layout_weight="0.4"/> | ||
62 | + | ||
63 | + <TextView | ||
64 | + android:id="@+id/totalImvIncluidos" | ||
65 | + android:layout_width="fill_parent" | ||
66 | + android:layout_height="wrap_content" | ||
67 | + android:layout_marginTop="10dip" | ||
68 | + android:text="TotalImoveisIncluidos" | ||
69 | + android:textColor="#000000" | ||
70 | + android:textStyle="bold" | ||
71 | + android:textSize="20sp" | ||
72 | + android:layout_marginLeft="4dip" android:layout_weight="0.4"/> | ||
73 | + | ||
74 | + <TextView | ||
75 | + android:id="@+id/totalImvIVisitados" | ||
76 | + android:layout_width="fill_parent" | ||
77 | + android:layout_height="wrap_content" | ||
78 | + android:layout_marginTop="10dip" | ||
79 | + android:text="TotalImoveisVisitados" | ||
80 | + android:textColor="#000000" | ||
81 | + android:textStyle="bold" | ||
82 | + android:textSize="20sp" | ||
83 | + android:layout_marginLeft="4dip" android:layout_weight="0.4"/> | ||
84 | + | ||
85 | + </LinearLayout> | ||
86 | + | ||
87 | + | ||
88 | + </LinearLayout> | ||
89 | + | ||
90 | +</LinearLayout> |
atualizacao-cadastral-master/res/layout/localidade_aba.xml
0 → 100644
@@ -0,0 +1,206 @@ | @@ -0,0 +1,206 @@ | ||
1 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | + xmlns:tools="http://schemas.android.com/tools" | ||
3 | + android:layout_width="match_parent" | ||
4 | + android:layout_height="match_parent" | ||
5 | + tools:context=".LocalidadeAbaActivity" | ||
6 | + android:paddingRight="20dp" | ||
7 | + android:scrollbars="vertical" > | ||
8 | + | ||
9 | + <TableLayout | ||
10 | + xmlns:android="http://schemas.android.com/apk/res/android" | ||
11 | + android:layout_width="match_parent" | ||
12 | + android:layout_height="wrap_content" | ||
13 | + android:shrinkColumns="3" > | ||
14 | + | ||
15 | + <TableRow android:paddingTop="8dp" > | ||
16 | + | ||
17 | + <!-- Matricula --> | ||
18 | + <TextView | ||
19 | + android:id="@+id/matricula" | ||
20 | + style="@style/labelAba" | ||
21 | + android:layout_width="wrap_content" | ||
22 | + android:layout_height="wrap_content" | ||
23 | + android:text="@string/matricula" | ||
24 | + android:textStyle="bold" /> | ||
25 | + | ||
26 | + <EditText | ||
27 | + android:id="@+id/edtMatricula" | ||
28 | + style="@style/editAbaMenor" | ||
29 | + android:layout_marginLeft="10dip" | ||
30 | + android:textColor="#000000" /> | ||
31 | + </TableRow> | ||
32 | + | ||
33 | + <TableRow > | ||
34 | + | ||
35 | + <!-- Municipio --> | ||
36 | + <TextView | ||
37 | + android:id="@+id/municipio" | ||
38 | + style="@style/labelAba" | ||
39 | + android:layout_width="wrap_content" | ||
40 | + android:layout_height="wrap_content" | ||
41 | + android:text="@string/str_municipio" | ||
42 | + android:textStyle="bold" /> | ||
43 | + | ||
44 | + <EditText | ||
45 | + android:id="@+id/edtMunicipio" | ||
46 | + style="@style/editAbaMenor" | ||
47 | + android:layout_marginLeft="10dip" | ||
48 | + android:textColor="#000000" | ||
49 | + android:layout_weight="1" /> | ||
50 | + </TableRow> | ||
51 | + | ||
52 | + <TableRow> | ||
53 | + | ||
54 | + <!-- Localidade --> | ||
55 | + <TextView | ||
56 | + android:id="@+id/localidade" | ||
57 | + style="@style/labelAba" | ||
58 | + android:layout_width="wrap_content" | ||
59 | + android:layout_height="wrap_content" | ||
60 | + android:text="@string/localidade" | ||
61 | + android:textStyle="bold" /> | ||
62 | + | ||
63 | + <EditText | ||
64 | + android:id="@+id/edtLocalidade" | ||
65 | + style="@style/editAba" | ||
66 | + android:layout_width="match_parent" | ||
67 | + android:layout_marginLeft="10dip" | ||
68 | + android:layout_weight="1" /> | ||
69 | + </TableRow> | ||
70 | + | ||
71 | + <TableRow> | ||
72 | + | ||
73 | + <!-- Setor Comercial --> | ||
74 | + <TextView | ||
75 | + android:id="@+id/setorComercial" | ||
76 | + style="@style/labelAba" | ||
77 | + android:layout_width="wrap_content" | ||
78 | + android:layout_height="wrap_content" | ||
79 | + android:text="@string/setorComercial" | ||
80 | + android:textStyle="bold" /> | ||
81 | + | ||
82 | + <Spinner | ||
83 | + android:id="@+id/spnSetorComercial" | ||
84 | + android:layout_width="fill_parent" | ||
85 | + android:layout_height="60dp" | ||
86 | + android:layout_marginBottom="10dp" | ||
87 | + android:layout_marginLeft="10dip" /> | ||
88 | + | ||
89 | + <EditText | ||
90 | + android:id="@+id/edtSetorComercial" | ||
91 | + style="@style/editAba" | ||
92 | + android:layout_width="105dp" | ||
93 | + android:inputType="number" | ||
94 | + android:maxLength="3" /> | ||
95 | + | ||
96 | + </TableRow> | ||
97 | + | ||
98 | + <TableRow> | ||
99 | + | ||
100 | + <!-- Quadra --> | ||
101 | + | ||
102 | + <TextView | ||
103 | + android:id="@+id/quadra" | ||
104 | + style="@style/labelAba" | ||
105 | + android:layout_width="wrap_content" | ||
106 | + android:layout_height="wrap_content" | ||
107 | + android:gravity="center_vertical" | ||
108 | + android:text="@string/quadra" | ||
109 | + android:textStyle="bold" /> | ||
110 | + | ||
111 | + <Spinner | ||
112 | + android:id="@+id/spnQuadra" | ||
113 | + android:layout_width="fill_parent" | ||
114 | + android:layout_height="60dp" | ||
115 | + android:layout_marginBottom="10dp" | ||
116 | + android:layout_marginLeft="10dip" /> | ||
117 | + | ||
118 | + <EditText | ||
119 | + android:id="@+id/edtQuadra" | ||
120 | + style="@style/editAba" | ||
121 | + android:layout_width="105dp" | ||
122 | + android:inputType="number" | ||
123 | + android:maxLength="3" /> | ||
124 | + </TableRow> | ||
125 | + | ||
126 | + <LinearLayout | ||
127 | + android:layout_width="fill_parent" | ||
128 | + android:layout_height="wrap_content" | ||
129 | + android:orientation="horizontal" | ||
130 | + android:paddingBottom="30dp" | ||
131 | + android:paddingLeft="35dp" | ||
132 | + android:paddingRight="35dp" | ||
133 | + android:paddingTop="30dp" > | ||
134 | + | ||
135 | + <View | ||
136 | + android:id="@+id/linha" | ||
137 | + android:layout_width="fill_parent" | ||
138 | + android:layout_height="2dp" | ||
139 | + android:background="#A8A8A8" | ||
140 | + android:paddingLeft="20dp" | ||
141 | + android:paddingRight="20dp" /> | ||
142 | + </LinearLayout> | ||
143 | + | ||
144 | + <TableRow> | ||
145 | + | ||
146 | + <!-- Lote --> | ||
147 | + | ||
148 | + <TextView | ||
149 | + android:id="@+id/lote" | ||
150 | + style="@style/labelAba" | ||
151 | + android:layout_width="wrap_content" | ||
152 | + android:layout_height="wrap_content" | ||
153 | + android:text="@string/lote" | ||
154 | + android:textStyle="bold" /> | ||
155 | + | ||
156 | + <EditText | ||
157 | + android:id="@+id/edtLote" | ||
158 | + style="@style/editAba" | ||
159 | + android:layout_width="match_parent" | ||
160 | + android:layout_marginLeft="7dip" | ||
161 | + android:inputType="number" | ||
162 | + android:maxLength="4" /> | ||
163 | + </TableRow> | ||
164 | + | ||
165 | + <TableRow> | ||
166 | + | ||
167 | + <!-- SubLote --> | ||
168 | + | ||
169 | + <TextView | ||
170 | + android:id="@+id/sublote" | ||
171 | + style="@style/labelAba" | ||
172 | + android:layout_width="wrap_content" | ||
173 | + android:layout_height="wrap_content" | ||
174 | + android:text="@string/sublote" | ||
175 | + android:textStyle="bold" /> | ||
176 | + | ||
177 | + <EditText | ||
178 | + android:id="@+id/edtSublote" | ||
179 | + style="@style/editAba" | ||
180 | + android:layout_width="match_parent" | ||
181 | + android:layout_marginLeft="7dip" | ||
182 | + android:inputType="number" | ||
183 | + android:maxLength="3" /> | ||
184 | + </TableRow> | ||
185 | + | ||
186 | + <LinearLayout | ||
187 | + android:layout_width="fill_parent" | ||
188 | + android:layout_height="match_parent" | ||
189 | + android:orientation="horizontal" | ||
190 | + android:paddingBottom="30dp" | ||
191 | + android:paddingLeft="35dp" | ||
192 | + android:paddingRight="35dp" | ||
193 | + android:paddingTop="30dp" | ||
194 | + android:layout_marginBottom="170dp" > | ||
195 | + | ||
196 | + <View | ||
197 | + android:id="@+id/linha2" | ||
198 | + android:layout_width="fill_parent" | ||
199 | + android:layout_height="2dp" | ||
200 | + android:background="#A8A8A8" | ||
201 | + android:paddingLeft="20dp" | ||
202 | + android:paddingRight="20dp" /> | ||
203 | + </LinearLayout> | ||
204 | + </TableLayout> | ||
205 | + | ||
206 | +</ScrollView> | ||
0 | \ No newline at end of file | 207 | \ No newline at end of file |