Created
January 6, 2011 03:31
-
-
Save wmbest2/767461 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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