Created
March 27, 2016 01:38
-
-
Save alvareztech/91ad4f0b499449736041 to your computer and use it in GitHub Desktop.
ZXing generate QR code. Location type
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
| Bundle bundle = new Bundle(); | |
| bundle.putFloat("LAT", 40.829208f); | |
| bundle.putFloat("LONG", -74.191279f); | |
| IntentIntegrator integrator = new IntentIntegrator(this); | |
| integrator.addExtra("ENCODE_DATA", bundle); | |
| integrator.shareText(bundle.toString(), "LOCATION_TYPE"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment