Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 10, 2019 23:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/060fea32f880cb19cd729e41b57d4c44 to your computer and use it in GitHub Desktop.
Save parzibyte/060fea32f880cb19cd729e41b57d4c44 to your computer and use it in GitHub Desktop.
String texto = "El contenido del código QR";
Bitmap bitmap = QRCode.from(texto).bitmap();
// Suponiendo que tienes un ImageView con el id ivCodigoGenerado
ImageView imagenCodigo = findViewById(R.id.ivCodigoGenerado);
imagenCodigo.setImageBitmap(bitmap);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment