mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
61 lines
1.9 KiB
Java
61 lines
1.9 KiB
Java
package com.journeyapps.barcodescanner;
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
import android.view.KeyEvent;
|
|
import com.google.zxing.client.android.R;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class CaptureActivity extends Activity {
|
|
private DecoratedBarcodeView barcodeScannerView;
|
|
private CaptureManager capture;
|
|
|
|
@Override // android.app.Activity
|
|
protected void onCreate(Bundle bundle) {
|
|
super.onCreate(bundle);
|
|
this.barcodeScannerView = initializeContent();
|
|
CaptureManager captureManager = new CaptureManager(this, this.barcodeScannerView);
|
|
this.capture = captureManager;
|
|
captureManager.initializeFromIntent(getIntent(), bundle);
|
|
this.capture.decode();
|
|
}
|
|
|
|
protected DecoratedBarcodeView initializeContent() {
|
|
setContentView(R.layout.zxing_capture);
|
|
return (DecoratedBarcodeView) findViewById(R.id.zxing_barcode_scanner);
|
|
}
|
|
|
|
@Override // android.app.Activity
|
|
protected void onResume() {
|
|
super.onResume();
|
|
this.capture.onResume();
|
|
}
|
|
|
|
@Override // android.app.Activity
|
|
protected void onPause() {
|
|
super.onPause();
|
|
this.capture.onPause();
|
|
}
|
|
|
|
@Override // android.app.Activity
|
|
protected void onDestroy() {
|
|
super.onDestroy();
|
|
this.capture.onDestroy();
|
|
}
|
|
|
|
@Override // android.app.Activity
|
|
protected void onSaveInstanceState(Bundle bundle) {
|
|
super.onSaveInstanceState(bundle);
|
|
this.capture.onSaveInstanceState(bundle);
|
|
}
|
|
|
|
@Override // android.app.Activity
|
|
public void onRequestPermissionsResult(int i, String[] strArr, int[] iArr) {
|
|
this.capture.onRequestPermissionsResult(i, strArr, iArr);
|
|
}
|
|
|
|
@Override // android.app.Activity, android.view.KeyEvent.Callback
|
|
public boolean onKeyDown(int i, KeyEvent keyEvent) {
|
|
return this.barcodeScannerView.onKeyDown(i, keyEvent) || super.onKeyDown(i, keyEvent);
|
|
}
|
|
}
|