IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Android Discussion :

Récupérer changement de position


Sujet :

Android

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éclairé Avatar de bastou93
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2010
    Messages
    217
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Août 2010
    Messages : 217
    Par défaut Récupérer changement de position
    Bonjour a tous,

    Alors j'explique mon problème sous Android 4.0.3 (simu AVD) les changement (telnet) de position marche NIKEL

    Cependant en 2.3.3 (simu) RIEN ne se passe et meme pire au bout de 30s environ l'écran devient tout noir...

    Sur mobile pareil, le GPS s'active bien, mais rien ne se fait, je ne retourne plus dans position change et la position reste à lat 0.0 long 0.0

    Voici le code:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    public class Gps extends Activity {
     
    	double latEnd;
    	double lonEnd;
    	double latStart;
    	double lonStart;
    	double distance;
     
    	TextView tPosition;
    	TextView tDestination;
    	TextView tDistance;
     
    	@Override
    	public void onCreate(Bundle savedInstanceState){
     
    		super.onCreate(savedInstanceState);
     
    		setContentView(R.layout.gps);
    		//On récupère l’Intent que l’on a reçu
    		Intent thisIntent = getIntent();
    		//On récupère les deux extra grâce à leurs id
    		latEnd = Math.toRadians(thisIntent.getExtras().getDouble("latEnd"));
    		lonEnd = Math.toRadians(thisIntent.getExtras().getDouble("lonEnd"));
     
    		//Positionne les textes
    		tPosition = (TextView) findViewById(R.id.textPosition);
    		tDestination = (TextView) findViewById(R.id.textDestination);
    		tDistance = (TextView) findViewById(R.id.textDistance);
    		RefreshText();
     
    		//On récupère le service de localisation
    		LocationManager mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
    		LocationListener mlocListener = new MyLocationListener();
    		mlocManager .requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, 0, mlocListener);
    	}
     
    	public class MyLocationListener implements LocationListener {
    		public void onLocationChanged(Location location){
     
    			double R = 6371;	// Rayon de la terre
     
    			latStart = Math.toRadians(location.getLatitude());
    			lonStart = Math.toRadians(location.getLongitude());
     
    			distance = Math.acos(Math.sin(latStart)*Math.sin(latEnd) + Math.cos(latStart)*Math.cos(latEnd) * Math.cos(lonEnd-lonStart)) * R;
     
    			RefreshText();
    		}
     
    		public void onProviderDisabled(String provider){
    			Toast.makeText(getApplicationContext(),"Gps Désactivé",Toast.LENGTH_SHORT ).show();
    		}
     
    		public void onProviderEnabled(String provider){
    			Toast.makeText( getApplicationContext(),"Gps Activé",Toast.LENGTH_SHORT).show();
    		}
     
    		public void onStatusChanged(String provider, int status, Bundle extras){
    	}
    	}
     
    	private void RefreshText(){
    		tPosition.setText("Position actuelle = " + latStart + ", " + lonStart);
    		tDestination.setText("Destination actuelle = " + latEnd + ", " + lonEnd);
    		tDistance.setText("Distance réstante = " + distance);
    	}
     
    }
    Pouvez vous me dire ce qui cloche... (à savoir que mon telephone de test n'a pas internet en forfait et c'est un Desire S.

    Merci a tous,

    Bastien

  2. #2
    Expert confirmé

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Par défaut
    Bonjour

    On pourrait voir le logcat ?


    merci

  3. #3
    Membre éclairé Avatar de bastou93
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2010
    Messages
    217
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Août 2010
    Messages : 217
    Par défaut
    Bonjour,

    Merci pour ta demande, voici le log a partir du moment ou je change ma position GPS:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    01-09 17:41:15.691: I/DEBUG(30): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
    01-09 17:41:15.691: I/DEBUG(30): Build fingerprint: 'generic/sdk/generic:2.3.3/GRI34/101070:eng/test-keys'
    01-09 17:41:15.691: I/DEBUG(30): pid: 61, tid: 162  >>> system_server <<<
    01-09 17:41:15.691: I/DEBUG(30): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
    01-09 17:41:15.691: I/DEBUG(30):  r0 00000000  r1 405b65d8  r2 41adff0c  r3 4612ac74
    01-09 17:41:15.701: I/DEBUG(30):  r4 00000134  r5 00000000  r6 405b65d8  r7 41adff0c
    01-09 17:41:15.701: I/DEBUG(30):  r8 80701321  r9 80702240  10 00100000  fp 00000001
    01-09 17:41:15.701: I/DEBUG(30):  ip ae20e7ec  sp 4612ac60  lr ae20acd7  pc ae207dfe  cpsr 00000030
    01-09 17:41:15.901: I/DEBUG(30):          #00  pc 00007dfe  /system/lib/libandroid_servers.so
    01-09 17:41:15.911: I/DEBUG(30):          #01  pc 0000acd2  /system/lib/libandroid_servers.so
    01-09 17:41:15.911: I/DEBUG(30):          #02  pc 000012ca  /system/lib/hw/gps.goldfish.so
    01-09 17:41:15.911: I/DEBUG(30):          #03  pc 000014ae  /system/lib/hw/gps.goldfish.so
    01-09 17:41:15.911: I/DEBUG(30):          #04  pc 00011a7c  /system/lib/libc.so
    01-09 17:41:15.911: I/DEBUG(30):          #05  pc 00011640  /system/lib/libc.so
    01-09 17:41:15.921: I/DEBUG(30): code around pc:
    01-09 17:41:15.921: I/DEBUG(30): ae207ddc ab04b082 9301cb04 6f646804 b00247a0 
    01-09 17:41:15.921: I/DEBUG(30): ae207dec bc08bc10 4718b002 b510b40c ab04b082 
    01-09 17:41:15.921: I/DEBUG(30): ae207dfc 6804cb04 34f89301 47a06824 bc10b002 
    01-09 17:41:15.921: I/DEBUG(30): ae207e0c b002bc08 46c04718 b510b40c ab04b082 
    01-09 17:41:15.921: I/DEBUG(30): ae207e1c 9301cb04 34986804 47a06824 bc10b002 
    01-09 17:41:15.921: I/DEBUG(30): code around lr:
    01-09 17:41:15.921: I/DEBUG(30): ae20acb4 91099008 f7fb6aa0 900aeab6 1c3a910b 
    01-09 17:41:15.921: I/DEBUG(30): ae20acc4 6b646b23 930c1c28 1c31940d f7fd9b0f 
    01-09 17:41:15.921: I/DEBUG(30): ae20acd4 4906f88f 44791c28 f7ff3150 b011fe1d 
    01-09 17:41:15.921: I/DEBUG(30): ae20ace4 46c0bdf0 000043cc 00004148 00000786 
    01-09 17:41:15.921: I/DEBUG(30): ae20acf4 f7fbb510 bd10ec24 4802b510 f7fb4478 
    01-09 17:41:15.931: I/DEBUG(30): stack:
    01-09 17:41:15.931: I/DEBUG(30):     4612ac20  46dc5d64  
    01-09 17:41:15.931: I/DEBUG(30):     4612ac24  406d4003  /dev/ashmem/dalvik-heap (deleted)
    01-09 17:41:15.931: I/DEBUG(30):     4612ac28  00000009  
    01-09 17:41:15.941: I/DEBUG(30):     4612ac2c  00000000  
    01-09 17:41:15.941: I/DEBUG(30):     4612ac30  0000ab90  [heap]
    01-09 17:41:15.941: I/DEBUG(30):     4612ac34  80048c1b  /system/lib/libdvm.so
    01-09 17:41:15.941: I/DEBUG(30):     4612ac38  0000ab90  [heap]
    01-09 17:41:15.941: I/DEBUG(30):     4612ac3c  4612ac6c  
    01-09 17:41:15.941: I/DEBUG(30):     4612ac40  00010004  [heap]
    01-09 17:41:15.941: I/DEBUG(30):     4612ac44  80037667  /system/lib/libdvm.so
    01-09 17:41:15.941: I/DEBUG(30):     4612ac48  00000000  
    01-09 17:41:15.951: I/DEBUG(30):     4612ac4c  afd0dcc4  /system/lib/libc.so
    01-09 17:41:15.951: I/DEBUG(30):     4612ac50  afb18a0c  /system/lib/libm.so
    01-09 17:41:15.951: I/DEBUG(30):     4612ac54  4612ae00  
    01-09 17:41:15.951: I/DEBUG(30):     4612ac58  df002777  
    01-09 17:41:15.951: I/DEBUG(30):     4612ac5c  e3a070ad  
    01-09 17:41:15.951: I/DEBUG(30): #00 4612ac60  00000045  
    01-09 17:41:15.951: I/DEBUG(30):     4612ac64  ad331275  /system/lib/libandroid_runtime.so
    01-09 17:41:15.951: I/DEBUG(30):     4612ac68  00000134  
    01-09 17:41:15.951: I/DEBUG(30):     4612ac6c  ae20acd7  /system/lib/libandroid_servers.so
    01-09 17:41:15.961: I/DEBUG(30):     4612ac70  41adff0c  /dev/ashmem/dalvik-LinearAlloc (deleted)
    01-09 17:41:15.961: I/DEBUG(30):     4612ac74  00000001  
    01-09 17:41:15.961: I/DEBUG(30): #01 4612ac78  fa90e3a0  
    01-09 17:41:15.961: I/DEBUG(30):     4612ac7c  4047f8d8  /dev/ashmem/dalvik-heap (deleted)
    01-09 17:41:15.961: I/DEBUG(30):     4612ac80  075174af  
    01-09 17:41:15.961: I/DEBUG(30):     4612ac84  4004888c  /dev/ashmem/dalvik-heap (deleted)
    01-09 17:41:15.971: I/DEBUG(30):     4612ac88  00000000  
    01-09 17:41:15.971: I/DEBUG(30):     4612ac8c  00000000  
    01-09 17:41:15.971: I/DEBUG(30):     4612ac90  00000000  
    01-09 17:41:15.971: I/DEBUG(30):     4612ac94  00000000  
    01-09 17:41:15.971: I/DEBUG(30):     4612ac98  00000000  
    01-09 17:41:15.971: I/DEBUG(30):     4612ac9c  00000000  
    01-09 17:41:15.971: I/DEBUG(30):     4612aca0  00000000  
    01-09 17:41:15.981: I/DEBUG(30):     4612aca4  00000000  
    01-09 17:41:15.981: I/DEBUG(30):     4612aca8  bfc3b000  
    01-09 17:41:15.981: I/DEBUG(30):     4612acac  00000134  
    01-09 17:41:15.981: I/DEBUG(30):     4612acb0  4612ae56  
    01-09 17:41:15.981: I/DEBUG(30):     4612acb4  00000001  
    01-09 17:41:15.981: I/DEBUG(30):     4612acb8  0000000a  
    01-09 17:41:15.981: I/DEBUG(30):     4612acbc  4612ade8  
    01-09 17:41:15.981: I/DEBUG(30):     4612acc0  00000000  
    01-09 17:41:15.991: I/DEBUG(30):     4612acc4  807018d5  /system/lib/hw/gps.goldfish.so
    01-09 17:41:15.991: I/DEBUG(30):     4612acc8  00000045  
    01-09 17:41:15.991: I/DEBUG(30):     4612accc  807012cd  /system/lib/hw/gps.goldfish.so
    01-09 17:41:24.401: I/BootReceiver(61): Copying /data/tombstones/tombstone_03 to DropBox (SYSTEM_TOMBSTONE)
    01-09 17:41:24.451: D/Zygote(32): Process 61 terminated by signal (11)
    01-09 17:41:24.451: I/Zygote(32): Exit zygote because system server (61) has terminated
    01-09 17:41:24.461: I/ActivityThread(197): Removing dead content provider: settings
    01-09 17:41:24.471: I/ServiceManager(27): service 'usagestats' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'SurfaceFlinger' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'batteryinfo' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'sensorservice' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'entropy' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'power' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'backup' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'telephony.registry' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'content' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'uimode' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'package' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'audio' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'account' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'activity' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'meminfo' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'cpuinfo' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'permission' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'diskstats' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'battery' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'alarm' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'hardware' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'vibrator' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'window' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'clipboard' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'device_policy' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'statusbar' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'netstat' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'input_method' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'appwidget' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'network_management' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'wifi' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'connectivity' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'throttle' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'wallpaper' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'accessibility' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'mount' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'notification' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'devicestoragemonitor' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'location' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'dropbox' died
    01-09 17:41:24.471: I/ServiceManager(27): service 'search' died
    01-09 17:41:24.481: I/ActivityThread(331): Removing dead content provider: settings
    01-09 17:41:24.481: I/ActivityThread(239): Removing dead content provider: settings
    01-09 17:41:24.481: I/ActivityThread(168): Removing dead content provider: settings
    01-09 17:41:24.481: I/ActivityThread(126): Removing dead content provider: settings
    01-09 17:41:24.491: I/ActivityThread(119): Removing dead content provider: settings
    01-09 17:41:24.491: I/ActivityThread(123): Removing dead content provider: settings
    01-09 17:41:24.631: E/installd(34): eof
    01-09 17:41:24.631: E/installd(34): failed to read size
    01-09 17:41:24.631: I/installd(34): closing connection
    01-09 17:41:24.631: D/qemud(37): fdhandler_event: disconnect on fd 11
    01-09 17:41:24.661: I/ServiceManager(27): service 'media.audio_flinger' died
    01-09 17:41:24.661: I/ServiceManager(27): service 'media.audio_policy' died
    01-09 17:41:24.661: I/ServiceManager(27): service 'media.player' died
    01-09 17:41:24.661: I/ServiceManager(27): service 'media.camera' died
    01-09 17:41:24.701: I/ServiceManager(27): service 'isms' died
    01-09 17:41:24.701: I/ServiceManager(27): service 'simphonebook' died
    01-09 17:41:24.701: I/ServiceManager(27): service 'iphonesubinfo' died
    01-09 17:41:24.701: I/ServiceManager(27): service 'phone' died
    01-09 17:41:24.891: I/Netd(342): Netd 1.0 starting
    01-09 17:41:25.801: D/AndroidRuntime(343): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
    01-09 17:41:25.801: D/AndroidRuntime(343): CheckJNI is ON
    01-09 17:41:26.201: I/(341): ServiceManager: 0xad50
    01-09 17:41:26.201: D/AudioHardwareInterface(341): setMode(NORMAL)
    01-09 17:41:26.201: I/CameraService(341): CameraService started (pid=341)
    01-09 17:41:26.241: I/AudioFlinger(341): AudioFlinger's thread 0xc658 ready to run
    01-09 17:41:26.801: I/SamplingProfilerIntegration(343): Profiler is disabled.
    01-09 17:41:26.881: I/Zygote(343): Preloading classes...
    01-09 17:41:26.901: D/dalvikvm(343): GC_EXPLICIT freed 47K, 78% free 232K/1024K, external 0K/0K, paused 17ms
    01-09 17:41:26.981: D/dalvikvm(343): GC_EXPLICIT freed 1K, 73% free 282K/1024K, external 0K/0K, paused 15ms
    01-09 17:41:27.121: D/dalvikvm(343): GC_EXPLICIT freed 22K, 70% free 316K/1024K, external 0K/0K, paused 15ms
    01-09 17:41:27.221: D/dalvikvm(343): GC_EXPLICIT freed 17K, 66% free 354K/1024K, external 0K/0K, paused 5ms
    01-09 17:41:27.371: D/dalvikvm(343): GC_EXPLICIT freed 26K, 63% free 382K/1024K, external 0K/0K, paused 6ms
    01-09 17:41:27.651: D/dalvikvm(343): GC_EXPLICIT freed 20K, 58% free 439K/1024K, external 0K/0K, paused 17ms
    01-09 17:41:27.781: W/MediaProfiles(343): could not find media config xml file
    01-09 17:41:28.421: D/dalvikvm(343): GC_EXPLICIT freed 99K, 47% free 545K/1024K, external 0K/0K, paused 9ms
    01-09 17:41:29.291: D/dalvikvm(343): GC_EXPLICIT freed 272K, 28% free 884K/1219K, external 0K/0K, paused 39ms
    01-09 17:41:29.431: D/dalvikvm(343): GC_EXPLICIT freed 21K, 24% free 931K/1219K, external 0K/0K, paused 33ms
    01-09 17:41:29.431: D/RenderScript_jni(343): RenderScript JNI library not found!
    01-09 17:41:29.611: D/dalvikvm(343): GC_EXPLICIT freed 25K, 19% free 998K/1219K, external 0K/0K, paused 26ms
    01-09 17:41:29.941: D/dalvikvm(343): GC_EXPLICIT freed 47K, 5% free 1281K/1347K, external 0K/0K, paused 40ms
    01-09 17:41:30.141: D/dalvikvm(343): GC_EXPLICIT freed 24K, 3% free 1310K/1347K, external 0K/0K, paused 55ms
    01-09 17:41:30.311: D/dalvikvm(343): GC_EXPLICIT freed 28K, 6% free 1336K/1411K, external 0K/0K, paused 40ms
    01-09 17:41:30.701: D/dalvikvm(343): GC_EXPLICIT freed 14K, 3% free 1376K/1411K, external 0K/0K, paused 45ms
    01-09 17:41:30.971: D/dalvikvm(343): GC_EXPLICIT freed 28K, 5% free 1402K/1475K, external 0K/0K, paused 40ms
    01-09 17:41:31.161: D/dalvikvm(343): GC_EXPLICIT freed 28K, 3% free 1439K/1475K, external 0K/0K, paused 46ms
    01-09 17:41:31.331: D/dalvikvm(343): GC_EXPLICIT freed 38K, 6% free 1457K/1539K, external 0K/0K, paused 42ms
    01-09 17:41:31.501: D/dalvikvm(343): GC_EXPLICIT freed 40K, 5% free 1471K/1539K, external 0K/0K, paused 58ms
    01-09 17:41:31.651: D/dalvikvm(343): GC_EXPLICIT freed 55K, 8% free 1485K/1603K, external 0K/0K, paused 43ms
    01-09 17:41:34.931: D/dalvikvm(343): GC_FOR_MALLOC freed 2957K, 58% free 2166K/5123K, external 0K/0K, paused 180ms
    01-09 17:41:35.981: D/dalvikvm(343): GC_EXPLICIT freed 1401K, 55% free 2310K/5123K, external 0K/0K, paused 106ms
    01-09 17:41:44.351: D/dalvikvm(343): GC_EXPLICIT freed 148K, 54% free 2373K/5123K, external 0K/0K, paused 98ms
    01-09 17:41:44.661: D/dalvikvm(343): GC_EXPLICIT freed 74K, 54% free 2398K/5123K, external 0K/0K, paused 80ms
    01-09 17:41:44.881: D/dalvikvm(343): GC_EXPLICIT freed 36K, 53% free 2415K/5123K, external 0K/0K, paused 107ms
    01-09 17:41:45.071: D/dalvikvm(343): GC_EXPLICIT freed 31K, 53% free 2439K/5123K, external 0K/0K, paused 82ms
    01-09 17:41:45.281: D/dalvikvm(343): GC_EXPLICIT freed 38K, 52% free 2462K/5123K, external 0K/0K, paused 97ms
    01-09 17:41:45.301: I/Zygote(343): ...preloaded 1830 classes in 18419ms.
    01-09 17:41:45.301: E/Zygote(343): setreuid() failed. errno: 17
    01-09 17:41:45.411: D/dalvikvm(343): GC_EXPLICIT freed 18K, 52% free 2460K/5123K, external 0K/0K, paused 108ms
    01-09 17:41:45.411: I/Zygote(343): Preloading resources...
    01-09 17:41:45.551: D/dalvikvm(343): GC_EXTERNAL_ALLOC freed <1K, 52% free 2462K/5123K, external 0K/0K, paused 118ms
    01-09 17:41:45.561: W/Zygote(343): Preloaded drawable resource #0x1080093 (res/drawable-ldpi/sym_def_app_icon.png) that varies with configuration!!
    01-09 17:41:45.561: W/Zygote(343): Preloaded drawable resource #0x1080002 (res/drawable-ldpi/arrow_down_float.png) that varies with configuration!!
    01-09 17:41:45.691: W/Zygote(343): Preloaded drawable resource #0x10800b4 (res/drawable/btn_check.xml) that varies with configuration!!
    01-09 17:41:45.691: W/Zygote(343): Preloaded drawable resource #0x10800b7 (res/drawable-ldpi/btn_check_label_background.9.png) that varies with configuration!!
    01-09 17:41:45.701: W/Zygote(343): Preloaded drawable resource #0x10800b8 (res/drawable-ldpi/btn_check_off.png) that varies with configuration!!
    01-09 17:41:45.701: W/Zygote(343): Preloaded drawable resource #0x10800bd (res/drawable-ldpi/btn_check_on.png) that varies with configuration!!
    01-09 17:41:45.771: W/Zygote(343): Preloaded drawable resource #0x1080004 (res/drawable/btn_default.xml) that varies with configuration!!
    01-09 17:41:45.841: W/Zygote(343): Preloaded drawable resource #0x1080005 (res/drawable/btn_default_small.xml) that varies with configuration!!
    01-09 17:41:45.921: W/Zygote(343): Preloaded drawable resource #0x1080006 (res/drawable/btn_dropdown.xml) that varies with configuration!!
    01-09 17:41:46.001: W/Zygote(343): Preloaded drawable resource #0x1080008 (res/drawable/btn_plus.xml) that varies with configuration!!
    01-09 17:41:46.061: W/Zygote(343): Preloaded drawable resource #0x1080007 (res/drawable/btn_minus.xml) that varies with configuration!!
    01-09 17:41:46.141: W/Zygote(343): Preloaded drawable resource #0x1080009 (res/drawable/btn_radio.xml) that varies with configuration!!
    01-09 17:41:46.251: W/Zygote(343): Preloaded drawable resource #0x108000a (res/drawable/btn_star.xml) that varies with configuration!!
    01-09 17:41:46.341: D/dalvikvm(343): GC_EXPLICIT freed 25K, 52% free 2499K/5123K, external 234K/517K, paused 91ms
    01-09 17:41:46.371: W/Zygote(343): Preloaded drawable resource #0x1080132 (res/drawable/btn_toggle.xml) that varies with configuration!!
    01-09 17:41:46.381: W/Zygote(343): Preloaded drawable resource #0x1080196 (res/drawable-ldpi/ic_emergency.png) that varies with configuration!!
    01-09 17:41:46.391: W/Zygote(343): Preloaded drawable resource #0x1080012 (res/drawable-ldpi/divider_horizontal_bright.9.png) that varies with configuration!!
    01-09 17:41:46.401: W/Zygote(343): Preloaded drawable resource #0x1080014 (res/drawable-ldpi/divider_horizontal_dark.9.png) that varies with configuration!!
    01-09 17:41:46.481: W/Zygote(343): Preloaded drawable resource #0x1080016 (res/drawable/edit_text.xml) that varies with configuration!!
    01-09 17:41:46.512: W/Zygote(343): Preloaded drawable resource #0x1080170 (res/drawable/expander_group.xml) that varies with configuration!!
    01-09 17:41:46.591: W/Zygote(343): Preloaded drawable resource #0x1080062 (res/drawable/list_selector_background.xml) that varies with configuration!!
    01-09 17:41:46.591: W/Zygote(343): Preloaded drawable resource #0x108022a (res/drawable-ldpi/menu_background.9.png) that varies with configuration!!
    01-09 17:41:46.621: W/Zygote(343): Preloaded drawable resource #0x108022b (res/drawable-ldpi/menu_background_fill_parent_width.9.png) that varies with configuration!!
    01-09 17:41:46.661: W/Zygote(343): Preloaded drawable resource #0x108022c (res/drawable/menu_selector.xml) that varies with configuration!!
    01-09 17:41:46.681: W/Zygote(343): Preloaded drawable resource #0x108023a (res/drawable-ldpi/panel_background.9.png) that varies with configuration!!
    01-09 17:41:46.691: W/Zygote(343): Preloaded drawable resource #0x1080242 (res/drawable-ldpi/popup_bottom_bright.9.png) that varies with configuration!!
    01-09 17:41:46.701: W/Zygote(343): Preloaded drawable resource #0x1080243 (res/drawable-ldpi/popup_bottom_dark.9.png) that varies with configuration!!
    01-09 17:41:46.730: W/Zygote(343): Preloaded drawable resource #0x1080244 (res/drawable-ldpi/popup_bottom_medium.9.png) that varies with configuration!!
    01-09 17:41:46.730: W/Zygote(343): Preloaded drawable resource #0x1080245 (res/drawable-ldpi/popup_center_bright.9.png) that varies with configuration!!
    01-09 17:41:46.761: W/Zygote(343): Preloaded drawable resource #0x1080246 (res/drawable-ldpi/popup_center_dark.9.png) that varies with configuration!!
    01-09 17:41:46.782: W/Zygote(343): Preloaded drawable resource #0x1080249 (res/drawable-ldpi/popup_full_dark.9.png) that varies with configuration!!
    01-09 17:41:46.791: W/Zygote(343): Preloaded drawable resource #0x108024c (res/drawable-ldpi/popup_top_bright.9.png) that varies with configuration!!
    01-09 17:41:46.791: W/Zygote(343): Preloaded drawable resource #0x108024d (res/drawable-ldpi/popup_top_dark.9.png) that varies with configuration!!
    01-09 17:41:46.862: W/Zygote(343): Preloaded drawable resource #0x108006d (res/drawable/progress_indeterminate_horizontal.xml) that varies with configuration!!
    01-09 17:41:46.881: W/Zygote(343): Preloaded drawable resource #0x1080253 (res/drawable/progress_small.xml) that varies with configuration!!
    01-09 17:41:46.901: W/Zygote(343): Preloaded drawable resource #0x1080254 (res/drawable/progress_small_titlebar.xml) that varies with configuration!!
    01-09 17:41:46.901: W/Zygote(343): Preloaded drawable resource #0x1080274 (res/drawable-ldpi/scrollbar_handle_horizontal.9.png) that varies with configuration!!
    01-09 17:41:46.912: W/Zygote(343): Preloaded drawable resource #0x1080275 (res/drawable-ldpi/scrollbar_handle_vertical.9.png) that varies with configuration!!
    01-09 17:41:47.041: D/dalvikvm(343): GC_EXPLICIT freed 32K, 51% free 2524K/5123K, external 335K/517K, paused 123ms
    01-09 17:41:47.071: W/Zygote(343): Preloaded drawable resource #0x1080071 (res/drawable/spinner_dropdown_background.xml) that varies with configuration!!
    01-09 17:41:47.101: W/Zygote(343): Preloaded drawable resource #0x1080312 (res/drawable-ldpi/text_select_handle_left.png) that varies with configuration!!
    01-09 17:41:47.112: W/Zygote(343): Preloaded drawable resource #0x1080313 (res/drawable-ldpi/text_select_handle_middle.png) that varies with configuration!!
    01-09 17:41:47.132: W/Zygote(343): Preloaded drawable resource #0x1080314 (res/drawable-ldpi/text_select_handle_right.png) that varies with configuration!!
    01-09 17:41:47.152: W/Zygote(343): Preloaded drawable resource #0x1080335 (res/drawable-ldpi/title_bar_shadow.9.png) that varies with configuration!!
    01-09 17:41:47.182: W/Zygote(343): Preloaded drawable resource #0x10801d8 (res/drawable-ldpi/indicator_code_lock_drag_direction_green_up.png) that varies with configuration!!
    01-09 17:41:47.192: W/Zygote(343): Preloaded drawable resource #0x10801d9 (res/drawable-ldpi/indicator_code_lock_drag_direction_red_up.png) that varies with configuration!!
    01-09 17:41:47.201: W/Zygote(343): Preloaded drawable resource #0x10801da (res/drawable-ldpi/indicator_code_lock_point_area_default.png) that varies with configuration!!
    01-09 17:41:47.221: W/Zygote(343): Preloaded drawable resource #0x10801db (res/drawable-ldpi/indicator_code_lock_point_area_green.png) that varies with configuration!!
    01-09 17:41:47.252: W/Zygote(343): Preloaded drawable resource #0x10801dc (res/drawable-ldpi/indicator_code_lock_point_area_red.png) that varies with configuration!!
    01-09 17:41:47.252: I/Zygote(343): ...preloaded 51 resources in 1840ms.
    01-09 17:41:47.281: I/Zygote(343): ...preloaded 15 resources in 33ms.
    01-09 17:41:47.412: D/dalvikvm(343): GC_EXPLICIT freed 24K, 51% free 2532K/5123K, external 410K/517K, paused 118ms
    01-09 17:41:47.521: D/dalvikvm(343): GC_EXPLICIT freed 5K, 51% free 2526K/5123K, external 410K/517K, paused 105ms
    01-09 17:41:47.611: D/dalvikvm(343): GC_EXPLICIT freed <1K, 51% free 2526K/5123K, external 410K/517K, paused 86ms
    01-09 17:41:47.631: I/dalvikvm(343): System server process 350 has been created
    01-09 17:41:47.631: I/Zygote(343): Accepting command socket connections
    01-09 17:41:48.161: E/BatteryService(350): usbOnlinePath not found
    01-09 17:41:48.161: E/BatteryService(350): batteryVoltagePath not found
    01-09 17:41:48.161: E/BatteryService(350): batteryTemperaturePath not found
    01-09 17:41:48.192: I/sysproc(350): Entered system_init()
    01-09 17:41:48.192: I/sysproc(350): ServiceManager: 0x18a920
    01-09 17:41:48.192: I/SurfaceFlinger(350): SurfaceFlinger is starting
    01-09 17:41:48.192: I/SurfaceFlinger(350): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
    01-09 17:41:48.192: E/SurfaceFlinger(350): Couldn't open /sys/power/wait_for_fb_sleep or /sys/power/wait_for_fb_wake
    01-09 17:41:48.241: I/gralloc(350): using (fd=27)
    01-09 17:41:48.241: I/gralloc(350): id           = 
    01-09 17:41:48.241: I/gralloc(350): xres         = 240 px
    01-09 17:41:48.241: I/gralloc(350): yres         = 320 px
    01-09 17:41:48.241: I/gralloc(350): xres_virtual = 240 px
    01-09 17:41:48.241: I/gralloc(350): yres_virtual = 640 px
    01-09 17:41:48.241: I/gralloc(350): bpp          = 16
    01-09 17:41:48.241: I/gralloc(350): r            = 11:5
    01-09 17:41:48.241: I/gralloc(350): g            =  5:6
    01-09 17:41:48.241: I/gralloc(350): b            =  0:5
    01-09 17:41:48.241: I/gralloc(350): width        = 37 mm (164.756760 dpi)
    01-09 17:41:48.241: I/gralloc(350): height       = 49 mm (165.877548 dpi)
    01-09 17:41:48.241: I/gralloc(350): refresh rate = 60.00 Hz
    01-09 17:41:48.251: D/libEGL(350): egl.cfg not found, using default config
    01-09 17:41:48.261: D/libEGL(350): loaded /system/lib/egl/libGLES_android.so
    01-09 17:41:48.281: I/SurfaceFlinger(350): EGL informations:
    01-09 17:41:48.281: I/SurfaceFlinger(350): # of configs : 8
    01-09 17:41:48.281: I/SurfaceFlinger(350): vendor    : Android
    01-09 17:41:48.281: I/SurfaceFlinger(350): version   : 1.4 Android META-EGL
    01-09 17:41:48.281: I/SurfaceFlinger(350): extensions: EGL_KHR_image EGL_KHR_image_base EGL_KHR_image_pixmap EGL_ANDROID_image_native_buffer EGL_ANDROID_swap_rectangle 
    01-09 17:41:48.281: I/SurfaceFlinger(350): Client API: OpenGL ES
    01-09 17:41:48.281: I/SurfaceFlinger(350): EGLSurface: 5-6-5-0, config=0x0
    01-09 17:41:48.281: I/SurfaceFlinger(350): OpenGL informations:
    01-09 17:41:48.291: I/SurfaceFlinger(350): vendor    : Android
    01-09 17:41:48.291: I/SurfaceFlinger(350): renderer  : Android PixelFlinger 1.4
    01-09 17:41:48.291: I/SurfaceFlinger(350): version   : OpenGL ES-CM 1.0
    01-09 17:41:48.291: I/SurfaceFlinger(350): extensions: GL_OES_byte_coordinates GL_OES_fixed_point GL_OES_single_precision GL_OES_read_format GL_OES_compressed_paletted_texture GL_OES_draw_texture GL_OES_matrix_get GL_OES_query_matrix GL_OES_EGL_image GL_OES_compressed_ETC1_RGB8_texture GL_ARB_texture_compression GL_ARB_texture_non_power_of_two GL_ANDROID_user_clip_plane GL_ANDROID_vertex_buffer_object GL_ANDROID_generate_mipmap 
    01-09 17:41:48.291: I/SurfaceFlinger(350): GL_MAX_TEXTURE_SIZE = 4096
    01-09 17:41:48.291: I/SurfaceFlinger(350): GL_MAX_VIEWPORT_DIMS = 4096
    01-09 17:41:48.291: I/SurfaceFlinger(350): flags = 000c0000
    01-09 17:41:48.301: D/SensorService(350): nuSensorService starting...
    01-09 17:41:48.311: E/SensorService(350): couldn't open device for module sensors (Invalid argument)
    01-09 17:41:48.311: I/sysproc(350): System server: starting Android runtime.
    01-09 17:41:48.311: I/sysproc(350): System server: starting Android services.
    01-09 17:41:48.311: I/SystemServer(350): Entered the Android system server!
    01-09 17:41:48.351: I/sysproc(350): System server: entering thread pool.
    01-09 17:41:48.361: I/SystemServer(350): Entropy Service
    01-09 17:41:48.440: I/SystemServer(350): Power Manager
    01-09 17:41:48.460: I/SystemServer(350): Activity Manager
    01-09 17:41:48.541: I/ActivityManager(350): Memory class: 24
    01-09 17:41:48.661: W/UsageStats(350): Usage stats version changed; dropping
    01-09 17:41:48.751: D/libEGL(361): egl.cfg not found, using default config
    01-09 17:41:48.751: D/libEGL(361): loaded /system/lib/egl/libGLES_android.so
    01-09 17:41:48.791: W/zipro(361): Unable to open zip '/data/local/bootanimation.zip': No such file or directory
    01-09 17:41:48.791: W/zipro(361): Unable to open zip '/system/media/bootanimation.zip': No such file or directory
    01-09 17:41:48.901: I/ARMAssembler(350): generated scanline__00000077:03010104_00000004_00000000 [ 22 ipp] (41 ins) at [0x443fd1e8:0x443fd28c] in 677081 ns
    01-09 17:41:48.941: I/ARMAssembler(361): generated scanline__00000077:03545404_00000A01_00000000 [ 30 ipp] (51 ins) at [0x402fc1e8:0x402fc2b4] in 1325933 ns
    01-09 17:41:48.951: I/SystemServer(350): Telephony Registry
    01-09 17:41:48.971: I/SystemServer(350): Package Manager
    01-09 17:41:49.001: I/Installer(350): connecting...
    01-09 17:41:49.001: I/installd(34): new connection
    01-09 17:41:49.541: D/dalvikvm(350): GC_CONCURRENT freed 175K, 50% free 2841K/5639K, external 410K/517K, paused 4ms+9ms
    01-09 17:41:49.801: W/PackageManager(350): Running ENG build: no pre-dexopt!
    01-09 17:41:50.621: D/dalvikvm(350): GC_CONCURRENT freed 248K, 49% free 3062K/5959K, external 410K/517K, paused 5ms+16ms
    01-09 17:41:51.661: D/dalvikvm(350): GC_CONCURRENT freed 238K, 47% free 3345K/6215K, external 410K/517K, paused 4ms+18ms
    01-09 17:41:51.811: D/PackageManager(350): No files in app dir /vendor/app
    01-09 17:41:51.851: I/PackageManager(350): Unpacking native libraries for /data/app/de.vogella.android.locationsapi.simple-1.apk
    01-09 17:41:51.861: I/PackageManager(350): Unpacking native libraries for /data/app/com.solde.calcul-2.apk
    01-09 17:41:51.891: I/PackageManager(350): Unpacking native libraries for /data/app/GestureBuilder.apk
    01-09 17:41:51.941: I/PackageManager(350): Unpacking native libraries for /data/app/SoftKeyboard.apk
    01-09 17:41:51.981: I/PackageManager(350): Unpacking native libraries for /data/app/CubeLiveWallpapers.apk
    01-09 17:41:51.991: D/szipinf(350): Initializing inflate state
    01-09 17:41:52.441: W/PackageParser(350): No actions in intent filter at /data/app/ApiDemos.apk Binary XML file line #1882
    01-09 17:41:52.441: W/PackageParser(350): No actions in intent filter at /data/app/ApiDemos.apk Binary XML file line #1888
    01-09 17:41:52.491: W/PackageManager(350): Package com.example.android.apis desires unavailable shared library com.example.will.never.exist; ignoring!
    01-09 17:41:52.491: I/PackageManager(350): Unpacking native libraries for /data/app/ApiDemos.apk
    01-09 17:41:52.641: D/dalvikvm(350): GC_CONCURRENT freed 261K, 45% free 3600K/6471K, external 410K/517K, paused 4ms+6ms
    01-09 17:41:52.721: I/PackageManager(350): Unpacking native libraries for /data/app/com.up.wake-2.apk
    01-09 17:41:52.741: I/PackageManager(350): Time to scan packages: 2.946 seconds
    01-09 17:41:52.761: W/PackageManager(350): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.contacts
    01-09 17:41:52.781: W/PackageManager(350): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone
    01-09 17:41:52.821: W/PackageManager(350): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)
    01-09 17:41:52.831: W/PackageManager(350): Unknown permission com.google.android.gm.permission.WRITE_GMAIL in package com.android.settings
    01-09 17:41:52.841: W/PackageManager(350): Unknown permission com.google.android.gm.permission.READ_GMAIL in package com.android.settings
    01-09 17:41:52.851: W/PackageManager(350): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings
    01-09 17:41:52.871: W/PackageManager(350): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.providers.contacts
    01-09 17:41:52.871: W/PackageManager(350): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.cp in package com.android.providers.contacts
    01-09 17:41:52.891: W/PackageManager(350): Unknown permission com.google.android.googleapps.permission.ACCESS_GOOGLE_PASSWORD in package com.android.development
    01-09 17:41:52.891: W/PackageManager(350): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.development
    01-09 17:41:52.891: W/PackageManager(350): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES in package com.android.development
    01-09 17:41:52.891: W/PackageManager(350): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser in package com.android.development
    01-09 17:41:52.921: W/PackageManager(350): Unknown permission android.permission.READ_OWNER_DATA in package com.android.email
    01-09 17:41:52.921: W/PackageManager(350): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x8be45)
    01-09 17:41:53.271: D/dalvikvm(350): GC_EXPLICIT freed 236K, 46% free 3609K/6599K, external 410K/517K, paused 112ms
    01-09 17:41:53.291: I/SystemServer(350): Account Manager
    01-09 17:41:53.461: I/SystemServer(350): Content Manager
    01-09 17:41:53.551: I/SystemServer(350): System Content Providers
    01-09 17:41:53.551: I/ActivityThread(350): Pub settings: com.android.providers.settings.SettingsProvider
    01-09 17:41:53.661: I/SystemServer(350): Battery Service
    01-09 17:41:53.671: I/SystemServer(350): Lights Service
    01-09 17:41:53.681: I/SystemServer(350): Vibrator Service
    01-09 17:41:53.691: D/qemud(37): fdhandler_accept_event: accepting on fd 9
    01-09 17:41:53.691: D/qemud(37): created client 0x12f38 listening on fd 11
    01-09 17:41:53.691: D/qemud(37): client_fd_receive: attempting registration for service 'hw-control'
    01-09 17:41:53.691: D/qemud(37): client_fd_receive:    -> received channel id 5
    01-09 17:41:53.701: D/SettingsProvider(350): cache for settings table 'secure' rows=28; fullycached=true
    01-09 17:41:53.731: D/SettingsProvider(350): cache for settings table 'system' rows=46; fullycached=true

  4. #4
    Expert confirmé

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Par défaut
    Ca m'aide pas trop

    Sinon essaye avec l'emulateur.
    Via le DDMS on peut simuler l'envoie de position déjà tu pourras vérifier si cela provient de ton code ou du téléphone.
    Si le DDMS pose problème tu peux envoyer les points via commande :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    geo fix -121.45356 46.51119 4392
    http://developer.android.com/guide/t...-location.html

    et mets cela à la place, pour tes test :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    mlocManager .requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mlocListener);

  5. #5
    Membre éclairé Avatar de bastou93
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2010
    Messages
    217
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Août 2010
    Messages : 217
    Par défaut
    Bonjour,

    Tu voulais quoi comme log? désolès je n'arrive pas trop a débugger en java

    pour le geo fix, je fais cela comme ca pour l'instant:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    telnet localhost 5554
     
    geo fix 2.566674 47.944123
    Avec ton geo fix, même problème...

    J'ai bien fais les modifications pour mes phases de test

    Vois tu un problème dans le code? niveau déclaration? Est ce normal que sur la 4.0.3 cela marche mais pas sur la 2.3.3, j'ai l'impression que le GPS n'est pas activé lors de ma simulation cf:



    merci d'avance,

  6. #6
    Expert confirmé

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Par défaut
    Tu voulais quoi comme log? désolès je n'arrive pas trop a débugger en java
    C'était bien cela que je voulais mais en fait rien d'intéressant c'est tout .

    Vois tu un problème dans le code? niveau déclaration? Est ce normal que sur la 4.0.3 cela marche mais pas sur la 2.3.3, j'ai l'impression que le GPS n'est pas activé lors de ma simulation cf:
    Fort possible que cela proviennent de l'emulateur , j'avais le même souci entre deux pc pour la 2.2, un sous linux qui ne marchait que par telent , l'autre sous window que par le DDMS, va comprendre .

    Pour le GPS le mieux reste de faire les test sur smartphones en direct si tu en as un sous la main.

Discussions similaires

  1. Créer un bouton sans changement de position si insertion de ligne
    Par asayeh dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 18/04/2008, 14h20
  2. Traquer le changement de position et de visibilité d'un champ
    Par romaintaz dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 15/10/2007, 10h29
  3. Réponses: 4
    Dernier message: 12/06/2007, 09h34
  4. Changement de position d'un controle
    Par fredppp dans le forum Framework .NET
    Réponses: 1
    Dernier message: 17/05/2007, 08h10
  5. Réponses: 4
    Dernier message: 22/08/2005, 19h19

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo