How can i have bot the lat and log in one textview separated with a comma? I tried as below and i am getting the "do not concatenate text displayed with settext" warning!
 gpsTracker = new GpsTracker( MainActivity.this);
               if(gpsTracker.canGetLocation()){
                   double latitude = gpsTracker.getLatitude();
                   double longitude = gpsTracker.getLongitude();
                   textviewGPSLocation.setText(String.valueOf(latitude) + "/," + String.valueOf ( longitude ));