mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 20:53:25 +00:00
128 lines
4.4 KiB
C#
128 lines
4.4 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using Android.Graphics;
|
|
using Android.Text;
|
|
using Android.Text.Method;
|
|
using Android.Views.InputMethods;
|
|
using Android.Widget;
|
|
using Bit.Android.Controls;
|
|
using Bit.App.Controls;
|
|
using Bit.App.Enums;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Platform.Android;
|
|
|
|
[assembly: ExportRenderer(typeof(ExtendedEntry), typeof(ExtendedEntryRenderer))]
|
|
namespace Bit.Android.Controls
|
|
{
|
|
public class ExtendedEntryRenderer : EntryRenderer
|
|
{
|
|
protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
|
|
{
|
|
base.OnElementChanged(e);
|
|
|
|
var view = (ExtendedEntry)Element;
|
|
if(Control != null)
|
|
{
|
|
Control.SetIncludeFontPadding(false);
|
|
if(e.NewElement != null && e.NewElement.IsPassword)
|
|
{
|
|
Control.SetTypeface(Typeface.Default, TypefaceStyle.Normal);
|
|
Control.TransformationMethod = new PasswordTransformationMethod();
|
|
}
|
|
}
|
|
|
|
SetBorder(view);
|
|
SetMaxLength(view);
|
|
SetReturnType(view);
|
|
|
|
// Editor Action is called when the return button is pressed
|
|
Control.EditorAction += (object sender, TextView.EditorActionEventArgs args) =>
|
|
{
|
|
if(view.ReturnType != ReturnType.Next)
|
|
{
|
|
view.Unfocus();
|
|
}
|
|
|
|
// Call all the methods attached to base_entry event handler Completed
|
|
view.InvokeCompleted();
|
|
};
|
|
|
|
if(view.DisableAutocapitalize)
|
|
{
|
|
Control.SetRawInputType(Control.InputType |= InputTypes.TextVariationEmailAddress);
|
|
}
|
|
|
|
if(view.Autocorrect.HasValue)
|
|
{
|
|
Control.SetRawInputType(Control.InputType |= InputTypes.TextFlagNoSuggestions);
|
|
}
|
|
}
|
|
|
|
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
{
|
|
var view = (ExtendedEntry)Element;
|
|
|
|
if(e.PropertyName == ExtendedEntry.HasBorderProperty.PropertyName
|
|
|| e.PropertyName == ExtendedEntry.HasOnlyBottomBorderProperty.PropertyName
|
|
|| e.PropertyName == ExtendedEntry.BottomBorderColorProperty.PropertyName)
|
|
{
|
|
SetBorder(view);
|
|
}
|
|
else
|
|
{
|
|
base.OnElementPropertyChanged(sender, e);
|
|
if(e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName)
|
|
{
|
|
Control.SetBackgroundColor(view.BackgroundColor.ToAndroid());
|
|
}
|
|
}
|
|
}
|
|
|
|
private void SetReturnType(ExtendedEntry view)
|
|
{
|
|
if(view.ReturnType.HasValue)
|
|
{
|
|
switch(view.ReturnType.Value)
|
|
{
|
|
case ReturnType.Go:
|
|
Control.ImeOptions = ImeAction.Go;
|
|
Control.SetImeActionLabel("Go", ImeAction.Go);
|
|
break;
|
|
case ReturnType.Next:
|
|
Control.ImeOptions = ImeAction.Next;
|
|
Control.SetImeActionLabel("Next", ImeAction.Next);
|
|
break;
|
|
case ReturnType.Search:
|
|
Control.ImeOptions = ImeAction.Search;
|
|
Control.SetImeActionLabel("Search", ImeAction.Search);
|
|
break;
|
|
case ReturnType.Send:
|
|
Control.ImeOptions = ImeAction.Send;
|
|
Control.SetImeActionLabel("Send", ImeAction.Send);
|
|
break;
|
|
default:
|
|
Control.SetImeActionLabel("Done", ImeAction.Done);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void SetBorder(ExtendedEntry view)
|
|
{
|
|
if(!view.HasBorder)
|
|
{
|
|
Control.SetBackgroundColor(global::Android.Graphics.Color.Transparent);
|
|
}
|
|
else
|
|
{
|
|
Control.SetBackgroundColor(view.BottomBorderColor.ToAndroid());
|
|
}
|
|
}
|
|
|
|
private void SetMaxLength(ExtendedEntry view)
|
|
{
|
|
Control.SetFilters(new IInputFilter[] { new InputFilterLengthFilter(view.MaxLength) });
|
|
}
|
|
}
|
|
}
|