usingSystem;usingSystem.Collections.Generic;usingSampleApp.CustomRenderers;usingXamarin.Forms;namespaceSampleApp.Views{publicpartialclassFunctionality23:ContentPage{publicstaticCustomViewcustomEditor=newCustomView{Text="",HorizontalOptions=LayoutOptions.FillAndExpand,VerticalOptions=LayoutOptions.FillAndExpand};publicFunctionality23(){InitializeComponent();if(Device.RuntimePlatform==Device.Android){customEditor.Text="NOT AVAILABLE ON Android";}AutomationProperties.SetIsInAccessibleTree(customEditor,true);background.Children.Add(customEditor);}}}