Skip to content

Instantly share code, notes, and snippets.

@Falci
Created February 15, 2013 01:27
Show Gist options
  • Save Falci/4957950 to your computer and use it in GitHub Desktop.
Save Falci/4957950 to your computer and use it in GitHub Desktop.
Sobrescrevendo o método onActivityResult
@Override
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
if (requestCode == 0 && resultCode == Activity.RESULT_OK) {
String qrcode = intent.getStringExtra("SCAN_RESULT");
TextView label = (TextView) findViewById(R.id.label);
label.setText(qrcode);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment