Custom Renderer Implementation for Android
This commit is contained in:
parent
4bdb50639f
commit
0dae5b1782
@ -0,0 +1,32 @@
|
|||||||
|
using Android.Content;
|
||||||
|
using Android.Graphics.Drawables;
|
||||||
|
using GMCabsDriverAssistantSolution.CustomControls;
|
||||||
|
using GMCabsDriverAssistantSolution.Platforms.Android.CustomRenderer;
|
||||||
|
using Microsoft.Maui.Controls.Compatibility;
|
||||||
|
using Microsoft.Maui.Controls.Compatibility.Platform.Android;
|
||||||
|
using Microsoft.Maui.Controls.Platform;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
[assembly: ExportRenderer(typeof(NoUnderlineEntry), typeof(NoUnderlineEntryRenderer))]
|
||||||
|
namespace GMCabsDriverAssistantSolution.Platforms.Android.CustomRenderer
|
||||||
|
{
|
||||||
|
public class NoUnderlineEntryRenderer : EntryRenderer
|
||||||
|
{
|
||||||
|
public NoUnderlineEntryRenderer(Context context) : base(context)
|
||||||
|
{
|
||||||
|
AutoPackage = false;
|
||||||
|
}
|
||||||
|
protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
|
||||||
|
{
|
||||||
|
base.OnElementChanged(e);
|
||||||
|
if (Control != null)
|
||||||
|
{
|
||||||
|
Control.Background = new ColorDrawable(global::Android.Graphics.Color.Transparent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,45 @@
|
|||||||
|
using Android.Content;
|
||||||
|
using Android.Views;
|
||||||
|
using GMCabsDriverAssistantSolution.CustomControls;
|
||||||
|
using GMCabsDriverAssistantSolution.Platforms.Android.CustomRenderer;
|
||||||
|
using Microsoft.Maui.Controls.Compatibility;
|
||||||
|
using Microsoft.Maui.Controls.Compatibility.Platform.Android;
|
||||||
|
using Microsoft.Maui.Controls.Platform;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
|
||||||
|
[assembly: ExportRenderer(typeof(OtpEntry), typeof(OtpEntryRenderer))]
|
||||||
|
namespace GMCabsDriverAssistantSolution.Platforms.Android.CustomRenderer
|
||||||
|
{
|
||||||
|
public class OtpEntryRenderer : EntryRenderer
|
||||||
|
{
|
||||||
|
public OtpEntryRenderer(Context context) : base(context)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool DispatchKeyEvent(KeyEvent e)
|
||||||
|
{
|
||||||
|
if (e.Action == KeyEventActions.Down)
|
||||||
|
{
|
||||||
|
if (e.KeyCode == Keycode.Del)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(Control.Text))
|
||||||
|
{
|
||||||
|
var entry = (OtpEntry)Element;
|
||||||
|
entry.OnBackspacePressed();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return base.DispatchKeyEvent(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
|
||||||
|
{
|
||||||
|
base.OnElementChanged(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user