Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Add parameters to adjust the scan area position #54

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.android.tools.build:gradle:3.5.2'
}
}

Expand Down Expand Up @@ -38,8 +38,8 @@ android {

dependencies {
implementation('com.journeyapps:zxing-android-embedded:4.3.0') { transitive = false }
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.zxing:core:3.3.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.zxing:core:3.5.0'
// implementation 'com.huawei.hms:scanplus:1.3.1.300'
implementation 'com.huawei.hms:scanplus:2.1.0.300'
}
14 changes: 10 additions & 4 deletions android/src/main/java/com/chavesgu/scan/ScanDrawView.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@
import android.util.Log;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.ViewGroup;
import android.view.animation.LinearInterpolator;
import android.widget.RelativeLayout;

import java.math.BigDecimal;
import java.util.Map;

import androidx.annotation.Nullable;
Expand All @@ -39,6 +42,7 @@ public class ScanDrawView extends SurfaceView implements SurfaceHolder.Callback
private int scanLineColor;
private boolean transparentScanLine = false;
private double scale = .7;
private float up = 80.0f;
private float dpi;
private boolean running;

Expand All @@ -54,6 +58,8 @@ public ScanDrawView(Context context, Activity activity, @Nullable Map<String, Ob
final int g = (int) args.get("g");
final int b = (int) args.get("b");
final double alpha = (double) args.get("a");
up = BigDecimal.valueOf((double) args.get("up")).floatValue();
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
final int a = max(0, min(255, (int)floor(alpha * 256.0)));
if (a==0) transparentScanLine = true;
scanLineColor = Color.argb(a, r, g, b);
Expand All @@ -75,8 +81,8 @@ public void surfaceChanged(SurfaceHolder surfaceHolder, int i, int width, int he
vw = width;
vh = height;
areaWidth = min(vw, vh) * scale;
areaX = (vw - areaWidth) / 2;
areaY = (vh - areaWidth) / 2;
areaX = (vw - areaWidth) / 2 ;
areaY = (vh - areaWidth) / 2 ;

DisplayMetrics dm = new DisplayMetrics();
activity.getWindowManager().getDefaultDisplay().getMetrics(dm);
Expand Down Expand Up @@ -128,12 +134,12 @@ private void tryDraw(final SurfaceHolder holder) {

private void drawing(Canvas canvas) {
final float x = (float) areaX;
final float y = (float) areaY;
final float y = (float) areaY - up;
final float width = (float) areaWidth;
final float shortWidth = (float) (areaWidth * 0.1);
final float scanLineWidth = (float) (areaWidth * 0.8);
final float scanLineX = (float) (vw - scanLineWidth)/2;
final float scanLineY = (float) (vh - scanLineWidth)/2;
final float scanLineY = (float) (vh - scanLineWidth)/2 - up;

if (scale < 1) {
Paint paint = new Paint();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import android.util.Log;
import android.view.View;

import java.math.BigDecimal;
import java.util.Map;

import androidx.annotation.NonNull;
Expand Down Expand Up @@ -44,7 +45,6 @@ private void initForBinding(Map<String, Object> args) {
this.scanViewNew.setCaptureListener(this);

this.scanDrawView = new ScanDrawView(context, activity, args);

this.parentView = new ParentView(context);
this.parentView.addView(this.scanViewNew);
this.parentView.addView(this.scanDrawView);
Expand Down
7 changes: 3 additions & 4 deletions android/src/main/java/com/chavesgu/scan/ScanViewFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,20 @@

public class ScanViewFactory extends PlatformViewFactory {
@NonNull private final BinaryMessenger messenger;
@NonNull private final Context context;
@NonNull private final Activity activity;
private ActivityPluginBinding activityPluginBinding;
private final ActivityPluginBinding activityPluginBinding;

ScanViewFactory(@NonNull BinaryMessenger messenger, @NonNull Context context, @NonNull Activity activity, @NonNull ActivityPluginBinding activityPluginBinding) {
super(StandardMessageCodec.INSTANCE);
this.messenger = messenger;
this.context = context;
this.activity = activity;
this.activityPluginBinding = activityPluginBinding;
}

@NonNull
@Override
public PlatformView create(Context context, int viewId, Object args) {
final Map<String, Object> creationParams = (Map<String, Object>) args;
return new ScanPlatformView(messenger, this.context, this.activity, this.activityPluginBinding, viewId, creationParams);
return new ScanPlatformView(messenger, context, this.activity, this.activityPluginBinding, viewId, creationParams);
}
}
1 change: 1 addition & 0 deletions android/src/main/java/com/chavesgu/scan/ScanViewNew.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public void barcodeResult(BarcodeResult result) {
myVib.vibrate(50);
}
}

}
});
_resume();
Expand Down
41 changes: 0 additions & 41 deletions example/.gitignore

This file was deleted.

10 changes: 0 additions & 10 deletions example/.metadata

This file was deleted.

16 changes: 0 additions & 16 deletions example/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions example/android/.gitignore

This file was deleted.

54 changes: 0 additions & 54 deletions example/android/app/build.gradle

This file was deleted.

7 changes: 0 additions & 7 deletions example/android/app/src/debug/AndroidManifest.xml

This file was deleted.

47 changes: 0 additions & 47 deletions example/android/app/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions example/android/app/src/main/res/drawable/launch_background.xml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
18 changes: 0 additions & 18 deletions example/android/app/src/main/res/values/styles.xml

This file was deleted.

7 changes: 0 additions & 7 deletions example/android/app/src/profile/AndroidManifest.xml

This file was deleted.

29 changes: 0 additions & 29 deletions example/android/build.gradle

This file was deleted.

4 changes: 0 additions & 4 deletions example/android/gradle.properties

This file was deleted.

Loading