Web URL をエンコードするときにタイトルを設定したい。QRCodeEncoderクラスを使用してコンテンツをエンコードします。Web URL のタイトルを設定するものが見つかりません。以下のコードを使用して、入力テキスト フィールドのコンテンツをエンコードし、画像を生成します。
// check validation for input string
if (URLUtil.isHttpUrl(inputWebURL)) {
QRCodeEncoder qrCodeEncoder = new QRCodeEncoder(
inputWebURL, null, Contents.Type.TEXT,
BarcodeFormat.QR_CODE.toString(), smallerDimension);
try {
bitmapCreatedImage = qrCodeEncoder.encodeAsBitmap();
ImageView myImage = (ImageView) findViewById(R.id.imageViewCreatedWebUrl);
myImage.setImageBitmap(bitmapCreatedImage);
} catch (WriterException e) {
e.printStackTrace();
}
}
Web URL QR エンコーディングのタイトルを設定するにはどうすればよいですか? ありがとう。