本文整理汇总了Java中com.google.zxing.integration.android.IntentIntegrator.setBarcodeImageEnabled方法的典型用法代码示例。如果您正苦于以下问题:Java IntentIntegrator.setBarcodeImageEnabled方法的具体用法?Java IntentIntegrator.setBarcodeImageEnabled怎么用?Java IntentIntegrator.setBarcodeImageEnabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.zxing.integration.android.IntentIntegrator
的用法示例。
在下文中一共展示了IntentIntegrator.setBarcodeImageEnabled方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onOptionsItemSelected
import com.google.zxing.integration.android.IntentIntegrator; //导入方法依赖的package包/类
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_refresh:
createWeexInstance();
renderPage();
break;
case R.id.action_scan:
IntentIntegrator integrator = new IntentIntegrator(this);
integrator.setDesiredBarcodeFormats(IntentIntegrator.QR_CODE_TYPES);
integrator.setPrompt("Scan a barcode");
//integrator.setCameraId(0); // Use a specific camera of the device
integrator.setBeepEnabled(true);
integrator.setOrientationLocked(false);
integrator.setBarcodeImageEnabled(true);
integrator.setPrompt(getString(R.string.capture_qrcode_prompt));
integrator.initiateScan();
break;
case android.R.id.home:
finish();
default:
break;
}
return super.onOptionsItemSelected(item);
}
示例2: onClick
import com.google.zxing.integration.android.IntentIntegrator; //导入方法依赖的package包/类
@Override
public void onClick(View v) {
if (textBack.equals(v)) {
finish();
} else if (textScan.equals(v)) {
IntentIntegrator integrator = new IntentIntegrator(this);
integrator.setDesiredBarcodeFormats(IntentIntegrator.QR_CODE_TYPES);
integrator.setPrompt("Scan a barcode");
//integrator.setCameraId(0); // Use a specific camera of the device
integrator.setBeepEnabled(true);
integrator.setOrientationLocked(false);
integrator.setBarcodeImageEnabled(true);
integrator.setPrompt("请将条码置于取景框内扫描");
integrator.initiateScan();
} else if (btnSave.equals(v)) {
save();
} else if (btnReset.equals(v)) {
save();
AppExitUtil.restart(this);
} else if (btnOpen.equals(v)) {
String page = editOpen.getText().toString().trim();
UWXJumpUtil.openPage(this, page);
}
}
示例3: callScanner
import com.google.zxing.integration.android.IntentIntegrator; //导入方法依赖的package包/类
/**
* Inicia el lector de barras.
* Devuelve el resultado por {@link #onActivityResult(int, int, Intent)}.
*/
private void callScanner() {
IntentIntegrator integrator = IntentIntegrator.forSupportFragment(this);
integrator.setDesiredBarcodeFormats(IntentIntegrator.ONE_D_CODE_TYPES);
integrator.setPrompt(getString(R.string.balance_align_barcode));
integrator.setBeepEnabled(false);
integrator.setBarcodeImageEnabled(true);
integrator.initiateScan();
}
示例4: onOptionsItemSelected
import com.google.zxing.integration.android.IntentIntegrator; //导入方法依赖的package包/类
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_refresh:
createWeexInstance();
renderPage();
break;
case R.id.action_scan:
IntentIntegrator integrator = new IntentIntegrator(this);
integrator.setDesiredBarcodeFormats(IntentIntegrator.QR_CODE_TYPES);
integrator.setPrompt("Scan a barcode");
//integrator.setCameraId(0); // Use a specific camera of the device
integrator.setBeepEnabled(true);
integrator.setOrientationLocked(false);
integrator.setBarcodeImageEnabled(true);
integrator.initiateScan();
//scanQrCode();
break;
default:
break;
}
return super.onOptionsItemSelected(item);
}
示例5: decodeUseCamera
import com.google.zxing.integration.android.IntentIntegrator; //导入方法依赖的package包/类
private void decodeUseCamera() {
IntentIntegrator integrator = IntentIntegrator.forSupportFragment(this);
integrator.setBeepEnabled(true);
integrator.setBarcodeImageEnabled(true);
integrator.setOrientationLocked(true);
integrator.initiateScan();
}
示例6: zxingScan
import com.google.zxing.integration.android.IntentIntegrator; //导入方法依赖的package包/类
/**
* This method handles the communication to the ZXING API -> Apache License 2.0
* For more information please check out the link below.
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
public void zxingScan(){
IntentIntegrator integrator = new IntentIntegrator(activity);
integrator.setDesiredBarcodeFormats(IntentIntegrator.ALL_CODE_TYPES);
integrator.setPrompt((String) getResources().getText(R.string.xzing_label));
integrator.setCameraId(0);
integrator.setBeepEnabled(false);
integrator.setBarcodeImageEnabled(false);
integrator.initiateScan();
}
示例7: configureIntentIntegrator
import com.google.zxing.integration.android.IntentIntegrator; //导入方法依赖的package包/类
/**
* Configures the QR Code scanner with invariable parameters
*
* @param intentIntegrator the IntentIntegrator to configure
* @param promptString the text to display in the prompt of the QR Code scanner overlay
*/
private static void configureIntentIntegrator(IntentIntegrator intentIntegrator,
String promptString) {
if (null == intentIntegrator) {
return;
}
intentIntegrator.setPrompt(promptString);
intentIntegrator.setDesiredBarcodeFormats(IntentIntegrator.QR_CODE_TYPES);
intentIntegrator.setCaptureActivity(QRCodeScannerActivity.class);
intentIntegrator.setBarcodeImageEnabled(true);
intentIntegrator.setOrientationLocked(false);
intentIntegrator.initiateScan();
}