本文整理汇总了Java中com.journeyapps.barcodescanner.CaptureManager类的典型用法代码示例。如果您正苦于以下问题:Java CaptureManager类的具体用法?Java CaptureManager怎么用?Java CaptureManager使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CaptureManager类属于com.journeyapps.barcodescanner包,在下文中一共展示了CaptureManager类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: onCreate
import com.journeyapps.barcodescanner.CaptureManager; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_custom_scan);
ButterKnife.bind(this);
mDBV.setTorchListener(this);
// 如果没有闪光灯功能,就去掉相关按钮
if(!hasFlash()) {
swichLight.setVisibility(View.GONE);
}
//重要代码,初始化捕获
captureManager = new CaptureManager(this,mDBV);
captureManager.initializeFromIntent(getIntent(),savedInstanceState);
captureManager.decode();
}
开发者ID:yzzslow0,项目名称:Ec2m,代码行数:19,代码来源:CustomScanActivity.java
示例2: onCreate
import com.journeyapps.barcodescanner.CaptureManager; //导入依赖的package包/类
@Override
public void onCreate(Bundle b) {
getWindow().requestFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
super.onCreate(b);
setContentView(R.layout.activity_scanqr);
initToolbar();
initNavigationBar();
barcodeScannerView = findViewById(R.id.qrcode_view);
TextView tooltip = findViewById(R.id.tooltip);
tooltip.setText("Platziere den QR-Code innerhalb des Rechtecks");
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) tooltip.getLayoutParams();
params.setMargins(0, 0, 0, GraphicUtils.getDisplayHeight()/4);
tooltip.setLayoutParams(params);
capture = new CaptureManager(this, barcodeScannerView);
capture.initializeFromIntent(getIntent(), b);
capture.decode();
}
开发者ID:LCA311,项目名称:leoapp-sources,代码行数:22,代码来源:ScanActivity.java
示例3: onCreate
import com.journeyapps.barcodescanner.CaptureManager; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.custom_scanner);
barcodeScannerView = (DecoratedBarcodeView)findViewById(R.id.zxing_barcode_scanner);
barcodeScannerView.setTorchListener(this);
switchFlashlightButton = (Button)findViewById(R.id.switch_flashlight);
// if the device does not have flashlight in its camera,
// then remove the switch flashlight button...
if (!hasFlash()) {
switchFlashlightButton.setVisibility(View.GONE);
}
capture = new CaptureManager(this, barcodeScannerView);
capture.initializeFromIntent(getIntent(), savedInstanceState);
switchFlashlightButton.setText("Flash On");
capture.decode();
}
开发者ID:theandrewlane,项目名称:super-contacts,代码行数:22,代码来源:CustomScannerActivity.java
示例4: onCreate
import com.journeyapps.barcodescanner.CaptureManager; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_read_qrcode_screen);
almanacScreenButton = (ImageButton)findViewById(R.id.almanacButton);
preferenceScreenButton = (ImageButton)findViewById(R.id.menuMoreButton);
almanacScreenButton.setOnClickListener(this);
preferenceScreenButton.setOnClickListener(this);
barcodeScannerView = (DecoratedBarcodeView)findViewById(R.id.zxing_barcode_scanner);
barcodeScannerView.setTorchListener(this);
barcodeScannerView.getViewFinder().setVisibility(View.INVISIBLE);
capture = new CaptureManager(this, barcodeScannerView);
capture.initializeFromIntent(getIntent(), savedInstanceState);
capture.decode();
}
开发者ID:fga-gpp-mds,项目名称:2016.2-MissaoNascente,代码行数:17,代码来源:ReadQRCodeScreen.java
示例5: onCreate
import com.journeyapps.barcodescanner.CaptureManager; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_scan_qr_code);
// Display toolbar and back arrow -- title and parent is found in activity tag in manifest
mToolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(mToolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
// scanner view
mDecoratedBarcodeView = (DecoratedBarcodeView) findViewById(R.id.zxing_barcode_scanner);
capture = new CaptureManager(this, mDecoratedBarcodeView);
capture.initializeFromIntent(getIntent(), savedInstanceState);
capture.decode();
}
开发者ID:karask,项目名称:bitcoinpos,代码行数:18,代码来源:ScanQrCodeActivity.java
示例6: onCreate
import com.journeyapps.barcodescanner.CaptureManager; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_scanner);
ButterKnife.inject(this);
toolbar.setBackgroundColor(Color.parseColor("#000000"));
setSupportActionBar(toolbar);
getSupportActionBar().setTitle(R.string.scan_qr_code);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
capture = new CaptureManager(this, scanner);
capture.initializeFromIntent(getIntent(), savedInstanceState);
capture.decode();
}
开发者ID:jianliaoim,项目名称:talk-android,代码行数:16,代码来源:ScannerActivity.java
示例7: onCreate
import com.journeyapps.barcodescanner.CaptureManager; //导入依赖的package包/类
@Override
protected void onCreate(Bundle data) {
super.onCreate(data);
setContentView( R.layout.scanner );
barcodeScannerView = ( DecoratedBarcodeView)findViewById(R.id.barcode_scanner);
barcodeScannerView.setTorchListener(this);
fab = (FloatingActionButton) findViewById(R.id.fab);
// if the device does not have flashlight in its camera,
// then remove the switch flashlight button...
this.light = false;
if ( !hasFlash() ) {
// fab.setVisibility( View.GONE );
}
if( data == null ){
data = getIntent().getExtras();
}
this.data = data.getBundle( ARG_FRAGMENT_BOTTOM_DATA );
this.fragmentBottomName = data.getString( ARG_FRAGMENT_BOTTOM_NAME );
if( this.fragmentBottomName != null ){
FragmentTransaction trasition = getSupportFragmentManager().beginTransaction();
Fragment fragment = Fragment.instantiate( this, fragmentBottomName );
fragment.setArguments( this.data );
if( getSupportFragmentManager().findFragmentById( R.id.content ) == null ){
trasition.add( R.id.content, fragment );
}
else {
trasition.replace( R.id.content, fragment );
}
trasition.commit();
}
capture = new CaptureManager( this, barcodeScannerView );
capture.initializeFromIntent( getIntent(), data );
capture.decode();
}
开发者ID:tec-ustp,项目名称:SIIEScanner,代码行数:44,代码来源:ScannerActivity.java
示例8: initScanner
import com.journeyapps.barcodescanner.CaptureManager; //导入依赖的package包/类
private void initScanner() {
this.capture = new CaptureManager(this.activity, this.activity.getBinding().scanner);
decodeQrCode();
this.capture.onResume();
}
开发者ID:toshiapp,项目名称:toshi-android-client,代码行数:6,代码来源:ScannerPresenter.java
注:本文中的com.journeyapps.barcodescanner.CaptureManager类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论