Skip to content

Instantly share code, notes, and snippets.

@wmbest2
Created January 6, 2011 03:31
Show Gist options
  • Save wmbest2/767461 to your computer and use it in GitHub Desktop.
Save wmbest2/767461 to your computer and use it in GitHub Desktop.
if(manhuntInputValidation.isProviderAvailable() && Code.LONGITUDE!=0.0 && Code.LATITUDE!=0.0){
mHashMap.put(TAG_GETGPSMEN_LON,""+Code.LONGITUDE );
mHashMap.put(TAG_GETGPSMEN_LAT, ""+Code.LATITUDE);
}
else
{
Toast.makeText(ManhuntNearbyGuys.this,"Your location cannot be located!", Toast.LENGTH_SHORT).show();
}
manhuntHttpBinder = new ManhuntHttpBinder(mHashMap,Code._GETGPSMEN,ManhuntNearbyGuys.this,manhuntInputValidation);
manhuntHttpBinder.execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment