Skip to content

Commit

Permalink
wpadebug: Add activity to select method for QR Code scanning
Browse files Browse the repository at this point in the history
Add QrCodeReadActivity that makes a decision to select between InputUri
and QrCodeScannerActivity depending on the availability of the camera in
the device.

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
  • Loading branch information
Anurag Das authored and jmalinen committed Feb 23, 2018
1 parent c7d89a8 commit be97da6
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
5 changes: 5 additions & 0 deletions wpadebug/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@
android:label="Input URI"
android:parentActivityName="w1.fi.wpadebug.MainActivity">
</activity>
<activity
android:name="w1.fi.wpadebug.QrCodeReadActivity"
android:label="Start Scan"
android:parentActivityName="w1.fi.wpadebug.MainActivity">
</activity>
<activity android:name="w1.fi.wpadebug.WpaWebViewActivity"
android:label="WebView"
android:launchMode="singleTop"
Expand Down
40 changes: 40 additions & 0 deletions wpadebug/src/w1/fi/wpadebug/QrCodeReadActivity.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
* wpadebug - wpa_supplicant and Wi-Fi debugging app for Android
* Copyright (c) 2018, The Linux Foundation
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
*/

package w1.fi.wpadebug;

import android.app.Activity;
import android.util.Log;
import android.content.Intent;
import android.hardware.Camera;
import android.os.Bundle;

public class QrCodeReadActivity extends Activity {

private static final String TAG = "wpadebug";

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
int numberOfCameras = Camera.getNumberOfCameras();

if (numberOfCameras > 0) {
Log.e(TAG, "Number of cameras found: " + numberOfCameras);
Intent QrCodeScanIntent = new Intent(QrCodeReadActivity.this,
QrCodeScannerActivity.class);
QrCodeReadActivity.this.startActivity(QrCodeScanIntent);
finish();
} else {
Log.e(TAG, "No cameras found, input the QR Code");
Intent QrCodeInputIntent = new Intent(QrCodeReadActivity.this,
InputUri.class);
QrCodeReadActivity.this.startActivity(QrCodeInputIntent);
finish();
}
}
}

0 comments on commit be97da6

Please sign in to comment.