-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added room name QR code scanning and custom resolution/fps
- Loading branch information
Showing
10 changed files
with
286 additions
and
316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
app/src/main/java/org/ossdc/visionai/QRCodeScanningActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright (C) 2021 Marius Slavescu - OSSDC.org. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.ossdc.visionai; | ||
|
||
import android.app.Activity; | ||
import android.content.Intent; | ||
import android.os.Bundle; | ||
|
||
import com.google.zxing.Result; | ||
|
||
import me.dm7.barcodescanner.zxing.ZXingScannerView; | ||
|
||
public class QRCodeScanningActivity extends Activity implements ZXingScannerView.ResultHandler { | ||
private ZXingScannerView mScannerView; | ||
|
||
@Override | ||
public void onCreate(Bundle state) { | ||
super.onCreate(state); | ||
mScannerView = new ZXingScannerView(this); // Programmatically initialize the scanner view | ||
setContentView(mScannerView); // Set the scanner view as the content view | ||
} | ||
|
||
@Override | ||
public void onResume() { | ||
super.onResume(); | ||
mScannerView.setResultHandler(this); // Register ourselves as a handler for scan results. | ||
mScannerView.startCamera(); // Start camera on resume | ||
} | ||
|
||
@Override | ||
public void onPause() { | ||
super.onPause(); | ||
mScannerView.stopCamera(); // Stop camera on pause | ||
} | ||
|
||
@Override | ||
public void handleResult(Result rawResult) { | ||
Intent resultIntent = new Intent(); | ||
resultIntent.putExtra(LauncherActivity.QRCODE_RESULT, rawResult.getText()); | ||
setResult(Activity.RESULT_OK, resultIntent); | ||
finish(); | ||
|
||
} | ||
} |
Oops, something went wrong.