Replies: 5 comments 7 replies
-
You could try handlers?, but this may mean that some of the functionality would not be available. |
Beta Was this translation helpful? Give feedback.
-
You can modify how the EntryHandler creates EditText controls - put something like this in your MauiProgram.cs: #if __ANDROID__
EntryHandler.PlatformViewFactory = (h) => {
var editText = new AndroidX.AppCompat.Widget.AppCompatEditText(h.Context);
editText.Background = null;
editText.SetBackgroundColor(Android.Graphics.Color.Transparent);
return editText;
};
#endif |
Beta Was this translation helpful? Give feedback.
-
Thanks for your help. `private static void SetHandler()
#if ANDROID
This works. |
Beta Was this translation helpful? Give feedback.
-
Net7 also now adds underline to a maui picker before it is clicked, any ideas? Thanks. |
Beta Was this translation helpful? Give feedback.
-
For me it will works with BackgroundTintList. Microsoft.Maui.Handlers.EditorHandler.Mapper.AppendToMapping("SetUpEntry", (handler, view) => |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello.
.net 7 brought back the bottom line on android entries.
Our customer doesn´t like that.
Is there a way to remove the bottom line or at least set it´s color to transparent?
Thanks for your help!
Beta Was this translation helpful? Give feedback.
All reactions