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

API standards et tierces Android Discussion :

Géolocalisation coordonnées mobile


Sujet :

API standards et tierces Android

  1. #1
    Membre habitué
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2011
    Messages : 141
    Points : 134
    Points
    134
    Par défaut Géolocalisation coordonnées mobile
    Bonjour,

    Je dois à nouveau me résoudre à poser une question. Je m'éfforce d'obtenir les coordonnées de ma position, or ma méthode ne retire aucune coordonnées. J'ai essayé d'implémenter ceci directement dans la classe ou dans une autre classe que j’appelais sans succès. Le code que je trouve sur internet me dit tout la même chose. Je pense qu'il doit y avoir qqch de simple qui m'échappe

    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
     
    	public void geolocalisation() {
    		lmanager  = (LocationManager) getSystemService(Context.LOCATION_SERVICE); 
     
    		 lmanager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000l, 10l, new LocationListener(){
    	            public void onLocationChanged(Location arg0) {
    	                 latitude = arg0.getLatitude();
    	                 longitude = arg0.getLongitude();
    	            } 
    	            public void onProviderDisabled(String arg0) {} 
    	            public void onProviderEnabled(String arg0) {} 
    	            public void onStatusChanged(String arg0, int arg1, Bundle arg2) {}
    	        });
    		GeoPoint position = new GeoPoint(microdegrees(longitude),microdegrees(latitude));
     
    		MonOverlay marker = new MonOverlay(getResources().getDrawable(R.drawable.personne));//localisation point marker
     
    		marker.addPoint(position);
    		maMap.getOverlays().add(marker);
    		monControler = this.maMap.getController();
     
    	}
    Merci.
    Donne un poisson à un homme et tu le nourris pour un jour, apprend lui à pécher et tu le nourris pour toujours.

  2. #2
    Membre habitué
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2011
    Messages : 141
    Points : 134
    Points
    134
    Par défaut
    j'y pensse voila les permissions que j'accorde ^^
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
    	<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    	<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    	<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"/>
    	<uses-permission android:name="android.permission.ACCESS_GPS"/>
    	<uses-permission android:name="android.permission.ACCESS_ASSISTED_GPS"/>
    Donne un poisson à un homme et tu le nourris pour un jour, apprend lui à pécher et tu le nourris pour toujours.

  3. #3
    Membre régulier
    Homme Profil pro
    Inscrit en
    Avril 2010
    Messages
    116
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Avril 2010
    Messages : 116
    Points : 98
    Points
    98
    Par défaut
    Salut,
    je ne pense pas que toutes ces autorisations soient nécessaires.
    Ensuite je te propose de suivre ceci : http://android.developpez.com/faq/?p...s_localisation
    Ca fonctionne très bien.

    Ensuite, ton appli te dit quoi ? As tu des erreurs ? Essaye de récupérer les valeurs de latitude et longitude dans ton logcat pour voir ce qu'il te mets.

  4. #4
    Membre habitué
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2011
    Messages : 141
    Points : 134
    Points
    134
    Par défaut
    j'ai essayé de reprendre le code du liens, en stockant à nouveau dans des variables global la longitude et la latitude.
    Quand j'appel ces variables que ce soit avec le Log ou avec le marker, si je leurs ai donné une valeur au début de programme, elles me donnent cette valeur
    sinon leurs appel fait planter l'application, donc elles ne reçoivent rien.
    Donne un poisson à un homme et tu le nourris pour un jour, apprend lui à pécher et tu le nourris pour toujours.

  5. #5
    Rédacteur
    Avatar de MrDuChnok
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2002
    Messages
    2 112
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juin 2002
    Messages : 2 112
    Points : 4 240
    Points
    4 240
    Par défaut
    Salut,

    Lorsque tu dit que ton application plante, elle ressort quoi comme erreur / exception ? peux tu la poster ici ?

    De même, peux tu nous mettre un code un peu plus représentatif de ton application ? (notamment là où ça plante)

    Merci.
    Si vous jugez mon post utile dans la résolution de votre problème, n'hésitez pas à utiliser le système de vote afin d'améliorer la qualité du forum

  6. #6
    Membre habitué
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2011
    Messages : 141
    Points : 134
    Points
    134
    Par défaut
    voici le code complet, il permet de mettre un point sur googleMap selon une adresse définie ailleurs(cela fonctionne très bien). Mon but est d'avoir un segond point qui s'affiche sur la localisation de la personne sur googleMap
    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
     
     
     
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Locale;
     
    import android.content.Context;
    import android.content.Intent;
    import android.graphics.drawable.Drawable;
    import android.location.Address;
    import android.location.Geocoder;
    import android.location.Location;
    import android.location.LocationListener;
    import android.location.LocationManager;
    import android.os.Bundle;
    import android.view.KeyEvent;
    import android.view.Menu;
    import android.widget.Toast;
     
    import com.google.android.maps.GeoPoint;
    import com.google.android.maps.ItemizedOverlay;
    import com.google.android.maps.MapActivity;
    import com.google.android.maps.MapController;
    import com.google.android.maps.MapView;
    import com.google.android.maps.OverlayItem;
     
    public class GoogleMap extends MapActivity   {
    	GeoPoint location;
    	MapView	maMap;
    	MapController monControler;
    	String rue="",npa="", ville ="";
    	Bundle bMap;
    	Boolean validAddress = false;
    	LocationManager lmanager;
    	Location lct;
    	Double  latitude, longitude;
     
    	public void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.googlemap);
    		if (this.getIntent().getExtras() != null){
    			bMap = this.getIntent().getExtras();
    			rue = bMap.getString("rue");
    			npa = bMap.getString("npa");
    			ville = bMap.getString("ville");
     
    		}
     
    		gestionGoogleMap();
    		geolocalisation();
    	}
    	private void gestionGoogleMap() {
    		maMap = (MapView)findViewById(R.id.mapView);
            maMap.setBuiltInZoomControls(true);//map zoomable
     
            monControler = maMap.getController();
     
    		//if (npa.length() > 0)
    			//ville = spinP906.getSelectedItem().toString();
     
    		if (rue.length() > 1 || npa.length() > 1 || ville.length() > 1){
    			location = this.getCoord(rue + " " + npa + " " + ville +" "+"Suisse");
    			MonOverlay marker = new MonOverlay(getResources().getDrawable(R.drawable.googlemapmaison));//localisation point marker
     
    			marker.addPoint(location);
    			maMap.getOverlays().add(marker);
    			monControler = this.maMap.getController();
    			monControler.setCenter(this.location);
    			monControler.setZoom(16);
    		} else {
    			location= new GeoPoint(microdegrees(0),microdegrees(0));
    			monControler.setCenter(location);
    		}
    	}
     
       	private int microdegrees(double value){
    		return (int)(value * 1000000);
    	}
     
       	protected boolean isRouteDisplayed() {
       		return false;
       	}
     
       	public class MonOverlay extends ItemizedOverlay<OverlayItem>{
       		List<GeoPoint> points = new ArrayList<GeoPoint>();
       		public MonOverlay(Drawable defaultMarker){
       			super(boundCenterBottom(defaultMarker));
       		}
     
       		protected OverlayItem createItem(int i){
       			GeoPoint point = points.get(i);
       			return new OverlayItem(point, "titre", "description");
       		}
     
       		public int size(){
       			return points.size();
       		}
     
       		public void addPoint(GeoPoint point){
       			this.points.add(point);
       			populate();
       		}
       	}
     
       	//permet de centrer googlemap sur un point
       	private GeoPoint getCoord(String adresse){
       		//Log.i("debug","adresse "+adresse);
       		Geocoder geoCoder = new Geocoder(this, Locale.getDefault());
     
       		try{
       			List<Address> addresses = geoCoder.getFromLocationName(adresse, 5);
     
       			if (addresses.size() > 0){
       				location = new GeoPoint((int) (addresses.get(0).getLatitude() * 1E6), (int) (addresses.get(0).getLongitude() * 1E6));
       				validAddress = true;
       				//Log.i("debug",String.valueOf(validAddress));
       			} else {
       				location = new GeoPoint(microdegrees(0),microdegrees(0));
       				validAddress = false;
       				Toast.makeText(getBaseContext(),getString(R.string.unknownAddress), Toast.LENGTH_LONG).show();
       				setResult(9);
       				finish();
       			}
     
       		} catch (IOException e){
       			e.printStackTrace();
       		}
     
       		return location;
       	}
     
       	public GeoPoint getLocation() {
       		return location;
       	}
     
       	public void setLocation(GeoPoint location){
       		this.location = location;
       		this.monControler.setCenter(this.location);
       		this.maMap.invalidate();
       	}
     
    	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    		String[]className=this.getClass().getName().split("\\.");
    		Integer classNumber=Integer.parseInt(className[(className.length-1)].replace("P",""));
     
    		if (resultCode != classNumber){
    			setResult(resultCode);
    			finish();
    		} 
    	}
     
    	//capture back button to act similarly to "sortir" or "annuller" buttons on the screen
    	public boolean onKeyDown(int keyCode, KeyEvent event) {
     
    		if (keyCode == KeyEvent.KEYCODE_BACK) {
    			setResult(9);
    			finish();
    		}
     
    		return super.onKeyDown(keyCode, event);
    	}
     
    	public void geolocalisation() {
    		lmanager  = (LocationManager) getSystemService(Context.LOCATION_SERVICE); 
     
    		 lmanager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000l, 500.0f, new LocationListener(){
    	            public void onLocationChanged(Location arg0) {
    	            	if (arg0 != null) {
    	            		latitude = arg0.getLatitude() * 1E6 ;
    	            		longitude = arg0.getLongitude() * 1E6;
    	            	}
    	            } 
    	            public void onProviderDisabled(String arg0) {} 
    	            public void onProviderEnabled(String arg0) {} 
    	            public void onStatusChanged(String arg0, int arg1, Bundle arg2) {}
    	        });
    		GeoPoint position = new GeoPoint(microdegrees(longitude),microdegrees(latitude));
     
    		MonOverlay marker = new MonOverlay(getResources().getDrawable(R.drawable.personne));//localisation point marker
     
    		marker.addPoint(position);
    		maMap.getOverlays().add(marker);
    		//monControler = this.maMap.getController();
    		monControler.animateTo(position);
    		maMap.invalidate();
     
    	}
     
     
     
    }
    et voici le rapport d'erreur
    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
     
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561): FATAL EXCEPTION: main
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561): java.lang.RuntimeException: Unable to start activity ComponentInfo{inventorycall.email.inventory/inventorycall.email.inventory.GoogleMap}: java.lang.NullPointerException
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1840)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1861)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.app.ActivityThread.access$1500(ActivityThread.java:132)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1038)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.os.Handler.dispatchMessage(Handler.java:99)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.os.Looper.loop(Looper.java:150)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.app.ActivityThread.main(ActivityThread.java:4310)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at java.lang.reflect.Method.invokeNative(Native Method)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at java.lang.reflect.Method.invoke(Method.java:507)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at dalvik.system.NativeStart.main(Native Method)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561): Caused by: java.lang.NullPointerException
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at inventorycall.email.inventory.GoogleMap.geolocalisation(GoogleMap.java:179)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at inventorycall.email.inventory.GoogleMap.onCreate(GoogleMap.java:52)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1804)
    09-05 13:26:47.806: ERROR/AndroidRuntime(5561):     ... 11 more
    Donne un poisson à un homme et tu le nourris pour un jour, apprend lui à pécher et tu le nourris pour toujours.

  7. #7
    Rédacteur
    Avatar de MrDuChnok
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2002
    Messages
    2 112
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juin 2002
    Messages : 2 112
    Points : 4 240
    Points
    4 240
    Par défaut
    essaye ça :
    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
     
     
    public void geolocalisation() {
    		lmanager  = (LocationManager) getSystemService(Context.LOCATION_SERVICE); 
     
    		 lmanager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000l, 500.0f, new LocationListener(){
    	            public void onLocationChanged(Location arg0) {
    	            	if (arg0 != null) {
    	            		latitude = arg0.getLatitude() * 1E6 ;
    	            		longitude = arg0.getLongitude() * 1E6;
                                    updateLocalisation();
    	            	}
    	            } 
    	            public void onProviderDisabled(String arg0) {} 
    	            public void onProviderEnabled(String arg0) {} 
    	            public void onStatusChanged(String arg0, int arg1, Bundle arg2) {}
    	        });
     
     
    	}
     
    private void updateLocalisation() {
    GeoPoint position = new GeoPoint(microdegrees(longitude),microdegrees(latitude));
     
    		MonOverlay marker = new MonOverlay(getResources().getDrawable(R.drawable.personne));//localisation point marker
     
    		marker.addPoint(position);
    		maMap.getOverlays().add(marker);
    		//monControler = this.maMap.getController();
    		monControler.animateTo(position);
    		maMap.invalidate();
    }
    Dans ton code, les variables longitude et latitude n'était pas encore initialisées que tu les utilisais déjà (d'où le nullpointerexception).
    Là ta position sur la carte s'actualisera à chaque fois que ton GPS te remontera un changement.
    Si vous jugez mon post utile dans la résolution de votre problème, n'hésitez pas à utiliser le système de vote afin d'améliorer la qualité du forum

  8. #8
    Membre habitué
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2011
    Messages : 141
    Points : 134
    Points
    134
    Par défaut
    j'ai testé avec un log, il n'appel pas la méthode
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
       public void onLocationChanged(Location arg0) {
    	            	if (arg0 != null) {
    	            		latitude = arg0.getLatitude() * 1E6 ;
    	            		longitude = arg0.getLongitude() * 1E6;
                                    updateLocalisation();
    	            	}
    	            }
    j'ai l’impression que c'est parce que il ne se géolocalise pas au départ peut être. (pour que la localisation change, il doit avoir une localisation de départ ou je me trompe?)
    Donne un poisson à un homme et tu le nourris pour un jour, apprend lui à pécher et tu le nourris pour toujours.

  9. #9
    Rédacteur
    Avatar de MrDuChnok
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2002
    Messages
    2 112
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juin 2002
    Messages : 2 112
    Points : 4 240
    Points
    4 240
    Par défaut
    C'est très long la géolocalisation par gps (surtout s'il n'a pas été lancé depuis un moment).
    Tu peux d'abord passer par une geoloc plus vague (3G), puis affiné avec le GPS.
    Tu peux également connaitre la dernière position mémorisée :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Location lastKnownLocation = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
    Si vous jugez mon post utile dans la résolution de votre problème, n'hésitez pas à utiliser le système de vote afin d'améliorer la qualité du forum

  10. #10
    Membre habitué
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2011
    Messages : 141
    Points : 134
    Points
    134
    Par défaut
    effectivement c'est moi qui était trop pressé(et dire que l'on dit que les suisses sont lent). ça fonctionne, il géolocalise mais il me situe en corne d'afrique or je ne suis pas en afrique. Je vais chercher d'ou peut venir le problème
    Donne un poisson à un homme et tu le nourris pour un jour, apprend lui à pécher et tu le nourris pour toujours.

  11. #11
    Membre habitué
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2011
    Messages : 141
    Points : 134
    Points
    134
    Par défaut
    et voila on me situe correctement,(j'avais enversé la longitude et la latitude)
    par contre comment faire pour arreter la géolocalisation(enlever l'image du statelite)
    j'ai essayé avec
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    lmanager.removeUpdates(this);
    mais la géolocalisation est toujours en cours.
    Donne un poisson à un homme et tu le nourris pour un jour, apprend lui à pécher et tu le nourris pour toujours.

  12. #12
    Membre habitué
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2011
    Messages : 141
    Points : 134
    Points
    134
    Par défaut
    ça y'es j'ai compris il fallait juste initialiser dans une nouvelle variable de type location listener la géolocalisation et mettre cette variable dans ma méthode citée plus haut. ça marche. (non je n'ai pas essayer de faire que de la géolocalisation avec android pendant tous ce temps.)
    Donne un poisson à un homme et tu le nourris pour un jour, apprend lui à pécher et tu le nourris pour toujours.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Géolocalisation sur application Mobile
    Par Paradisma dans le forum Windows Phone
    Réponses: 8
    Dernier message: 20/06/2011, 17h36
  2. Réponses: 3
    Dernier message: 27/07/2010, 10h41
  3. Récupérer coordonnées gps Mobil java
    Par dmellorente dans le forum Java ME
    Réponses: 1
    Dernier message: 12/09/2009, 09h19
  4. Récupérer coordonnées gps Mobil java
    Par dmellorente dans le forum Développement Mobile en Java
    Réponses: 0
    Dernier message: 31/07/2009, 10h51

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