我正在为ZXing的QR阅读器编写自定义叠加层。以下是工作示例:
public partial class CustomScanPage : ContentPage
{
ZXingScannerView zxing;
private List<BoxView> _boxes;
public CustomScanPage() : base()
{
zxing = new ZXingScannerView
{
HorizontalOptions = LayoutOptions.FillAndExpand,
VerticalOptions = LayoutOptions.FillAndExpand
};
zxing.OnScanResult += (result) =>
Device.BeginInvokeOnMainThread(async () =>
{
zxing.IsAnalyzing = false;
SetBoxesColor(Color.FromHex("#76ff03"));
await Task.Delay(2000);
await DisplayAlert("Scanned Barcode", result.Text, "OK");
SetBoxesColor(Color.White);
});
zxing.Options = new MobileBarcodeScanningOptions {
PossibleFormats = new List<ZXing.BarcodeFormat> { ZXing.BarcodeFormat.QR_CODE }
};
var overlay = BuildGrid();
var grid = new Grid
{
VerticalOptions = LayoutOptions.FillAndExpand,
HorizontalOptions = LayoutOptions.FillAndExpand,
};
grid.Children.Add(zxing);
grid.Children.Add(overlay);
Content = grid;
}
protected override void OnAppearing()
{
base.OnAppearing();
zxing.IsScanning = true;
}
protected override void OnDisappearing()
{
zxing.IsScanning = false;
base.OnDisappearing();
}
private AbsoluteLayout BuildGrid()
{
var al = new AbsoluteLayout();
var mask = new BoxView
{
HorizontalOptions = LayoutOptions.Fill,
VerticalOptions = LayoutOptions.Fill,
BackgroundColor = Color.Transparent
};
var maskSide = 196;
var yBegin = Math.Round((App.ScreenHeight - maskSide) / 2);
var xBegin = Math.Round((App.ScreenWidth - maskSide) / 2);
var barLong = 40;
var barShort = 4;
var barColor = Color.White;
var grid = new Grid { ColumnSpacing = 0, RowSpacing = 0 };
grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(yBegin, GridUnitType.Absolute) });
grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(maskSide, GridUnitType.Absolute) });
grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(App.ScreenHeight - yBegin, GridUnitType.Absolute) });
grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(xBegin, GridUnitType.Absolute) });
grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(maskSide, GridUnitType.Absolute) });
grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(App.ScreenWidth - xBegin, GridUnitType.Absolute) });
grid.Children.Add(new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = Color.FromHex("#80323232"), }, 0, 0);
grid.Children.Add(new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = Color.FromHex("#80323232") }, 0, 1);
grid.Children.Add(new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = Color.FromHex("#80323232") }, 0, 2);
grid.Children.Add(new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = Color.FromHex("#80323232") }, 1, 0);
grid.Children.Add(mask, 1, 1);
grid.Children.Add(new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = Color.FromHex("#80323232") }, 1, 2);
grid.Children.Add(new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = Color.FromHex("#80323232") }, 2, 0);
grid.Children.Add(new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = Color.FromHex("#80323232") }, 2, 1);
grid.Children.Add(new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = Color.FromHex("#80323232") }, 2, 2);
grid.HorizontalOptions = LayoutOptions.FillAndExpand;
grid.VerticalOptions = LayoutOptions.FillAndExpand;
AbsoluteLayout.SetLayoutBounds(grid, new Rectangle(0, 0, 1, 1));
AbsoluteLayout.SetLayoutFlags(grid, AbsoluteLayoutFlags.All);
al.Children.Add(grid);
var b1 = new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = barColor };
AbsoluteLayout.SetLayoutBounds(b1, new Rectangle(xBegin - barShort, yBegin, barShort, barLong - barShort));
AbsoluteLayout.SetLayoutFlags(b1, AbsoluteLayoutFlags.None);
var b2 = new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = barColor };
AbsoluteLayout.SetLayoutBounds(b2, new Rectangle(xBegin - barShort, yBegin - barShort, barLong, barShort));
AbsoluteLayout.SetLayoutFlags(b2, AbsoluteLayoutFlags.None);
var b3 = new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = barColor };
AbsoluteLayout.SetLayoutBounds(b3, new Rectangle(xBegin + maskSide, yBegin, barShort, barLong - barShort));
AbsoluteLayout.SetLayoutFlags(b3, AbsoluteLayoutFlags.None);
var b4 = new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = barColor };
AbsoluteLayout.SetLayoutBounds(b4, new Rectangle(xBegin - barLong + maskSide + barShort, yBegin - barShort, barLong, barShort));
AbsoluteLayout.SetLayoutFlags(b4, AbsoluteLayoutFlags.None);
var b5 = new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = barColor };
AbsoluteLayout.SetLayoutBounds(b5, new Rectangle(xBegin - barShort, yBegin + maskSide + barShort - barLong, barShort, barLong - barShort));
AbsoluteLayout.SetLayoutFlags(b5, AbsoluteLayoutFlags.None);
var b6 = new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = barColor };
AbsoluteLayout.SetLayoutBounds(b6, new Rectangle(xBegin - barShort, yBegin + maskSide, barLong, barShort));
AbsoluteLayout.SetLayoutFlags(b6, AbsoluteLayoutFlags.None);
var b7 = new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = barColor };
AbsoluteLayout.SetLayoutBounds(b7, new Rectangle(xBegin + maskSide - barLong + barShort, yBegin + maskSide, barLong, barShort));
AbsoluteLayout.SetLayoutFlags(b7, AbsoluteLayoutFlags.None);
var b8 = new BoxView { HorizontalOptions = LayoutOptions.Fill, VerticalOptions = LayoutOptions.Fill, BackgroundColor = barColor };
AbsoluteLayout.SetLayoutBounds(b8, new Rectangle(xBegin + maskSide, yBegin + maskSide - barLong + barShort, barShort, barLong - barShort));
AbsoluteLayout.SetLayoutFlags(b8, AbsoluteLayoutFlags.None);
al.Children.Add(b1);
al.Children.Add(b2);
al.Children.Add(b3);
al.Children.Add(b4);
al.Children.Add(b5);
al.Children.Add(b6);
al.Children.Add(b7);
al.Children.Add(b8);
_boxes = new List<BoxView> { b1, b2, b3, b4, b5, b6, b7, b8 };
return al;
}
private void SetBoxesColor(Color c)
{
foreach (var box in _boxes)
{
box.Color = c;
}
}
}
如你所见,没有什么复杂的。但问题是,如何呈现此页面。在Xamarin Android Player设备(Nexus 4 KitKat HD和Nexus 5 Lollipop Full HD)上,一切看起来都像预期的那样:
然而,当我在Nexus 5x设备(Marshmallow,Full HD)上运行相同的应用程序(网格上没有粉红色背景)时,如您所见,像素不精确,右上角有一点不匹配绿色形状,左侧形状有一点偏移,网格行上有一个像素的透明间隙:
在两个设备上正确呈现代码的事实使我相信我的点算法是正确的。可能是什么问题?更重要的是,我该怎么做才能解决它?
编辑:
也许某种原因是我的设备的pt/px
比率与模拟器设备的比率不同?
编辑:
@ Cheesebaron的回答是错误的。以下是我尝试做的事情,这根本没有帮助:我创建了CustomBoxView
,CustomBoxViewNative
,CustomBoxViewRenderer
并使用了CustomBoxView
而不是BoxView
。它没有用。
CustomBoxView:
public class CustomBoxView : View
{
public static readonly BindableProperty ColorProperty = BindableProperty.Create("Color", typeof (string),
typeof (CustomBoxView), "#FF0000");
public string Color
{
get { return (string) GetValue(ColorProperty); }
set { SetValue(ColorProperty, value); }
}
}
CustomBoxViewNative:
public class CustomBoxViewNative : View
{
private Canvas _canvas;
private Rect _rect;
public CustomBoxViewNative(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
{
}
public CustomBoxViewNative(Context context) : base(context)
{
}
public CustomBoxViewNative(Context context, IAttributeSet attrs) : base(context, attrs)
{
}
public CustomBoxViewNative(Context context, IAttributeSet attrs, int defStyleAttr) : base(context, attrs, defStyleAttr)
{
}
public CustomBoxViewNative(Context context, IAttributeSet attrs, int defStyleAttr, int defStyleRes) : base(context, attrs, defStyleAttr, defStyleRes)
{
}
protected override void OnDraw(Canvas canvas)
{
var paintCircle = new Paint { Color = Color.White };
paintCircle.StrokeWidth = Width*Resources.DisplayMetrics.Density;
_rect = new Rect(0, 0, Width, Height);
_canvas = canvas;
_canvas.DrawRect(_rect, paintCircle);
}
}
CustomBoxViewRenderer:
public class CustomBoxViewRenderer : ViewRenderer<CustomBoxView, CustomBoxViewNative>
{
protected override void OnElementChanged(ElementChangedEventArgs<CustomBoxView> e)
{
base.OnElementChanged(e);
if (e.OldElement != null || this.Element == null)
return;
var nativeControl = new CustomBoxViewNative(Forms.Context);
SetNativeControl(nativeControl);
}
}
答案 0 :(得分:5)
如评论中所述,您不会计算计算中的显示密度。因此,渲染线条时,某些设备可能会有点偏差。
我知道Xamarin Forms Labs有一个Display类,您可以在其中获得屏幕密度。如果你想通过依赖服务自己获得它,你可以这样做:
public interface IDisplayInfo
{
float Density { get; }
}
在Android上:
public class DisplayInfo : IDisplayInfo
{
public float Density => Application.Context.Resources.DisplayMetrics.Density;
}
在iOS上:
public class DisplayInfo : IDisplayInfo
{
public float Density => UIScreen.MainScreen.Scale;
}
在每个平台上注册您的依赖服务:
[assembly: Xamarin.Forms.Dependency (typeof (DisplayInfo))]
然后当你需要使用它时:
var display = DependencyService.Get<IDisplayInfo>();
var density = display.Density;
然后,您只需将笔画宽度乘以density
。