-
In
page.xaml
file1
<Entry x:Name="entry" Placeholder="This is an entry" />
-
In
page.cs
file1 2 3 4 5 6 7 8
protected override void OnHandlerChanged() { base.OnHandlerChanged(); #if ANDROID var edittext = entry.Handler.PlatformView as Android.Widget.EditText; edittext.Background = null; #endif }