Created
November 15, 2017 21:29
-
-
Save gguuss/388f587d4604913a835fc627ff373f8f 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
@Override | |
public void onClick(View v) { | |
int i = v.getId(); | |
if (i == R.id.button_camera) { | |
launchCamera(); | |
} else if (i == R.id.button_sign_in) { | |
signInAnonymously(); | |
} else if (i == R.id.button_detections) { | |
retrieveMetadata(); | |
updateUI(mAuth.getCurrentUser()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment