Hello again, I have one update to the question.
After some tests I noticed that Syncfusion.XForms.Android.Border.SfBorderRenderer do the job, is it correct?
And with it I noticed another problem, I just wanted to override OnElementChange
protected override void OnElementChanged(ElementChangedEventArgs<View> e)
{
base.OnElementChanged(e);
if (Control != null)
{
Control.Touch += Control_Touch;
}
}
but it seems that Control is null. How can I subscribe this event other way? Or I just need execute something like this in platform code soo there way will be perfect to:
private void Control_Touch(object sender, TouchEventArgs e)
{
if (e.Event.Action == MotionEventActions.Down)
{
Control.PerformHapticFeedback(FeedbackConstants.KeyboardTap);
Control.PlaySoundEffect(SoundEffects.Click);
}
e.Handled = false;
}
Thank you in advance for your help.
Regards,
Radek