I'm working with Xamarin.Forms, and the problem that I'm running into is wrapping text in the selection dialog
When the text very long exceeds the limit and does not show the rest of the text, I want to intend to break line when the text is long
- public class CustomPickerRenderer : PickerRenderer
- {
- public CustomPickerRenderer(Context context) : base(context) { }
- CustomPicker element;
- protected override void OnElementChanged(ElementChangedEventArgs e)
- {
- base.OnElementChanged(e);
- element = (CustomPicker)this.Element;
- if (Control != null && this.Element != null) ;
- var et = this.Control as EditText;
- Control.SetMaxLines(3);
- Control.Ellipsize = TextUtils.TruncateAt.End;
- Control.SetTextSize(Android.Util.ComplexUnitType.Sp, 15f);
- Control.SetSingleLine(false);
-
- }
- }
This is my code