-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Android] Implement Android Platform Specifics #5831
Conversation
@@ -6,6 +6,11 @@ namespace Microsoft.Maui.Controls | |||
{ | |||
public partial class Entry | |||
{ | |||
public static void MapImeOptions(EntryHandler handler, Entry entry) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Entry Input Method Editor Options on Android https://docs.microsoft.com/en-us/xamarin/xamarin-forms/platform/android/entry-ime-options
Platform.WebViewExtensions.UpdateEnableZoomControls(handler.PlatformView, webView); | ||
} | ||
|
||
public static void MapMixedContentMode(WebViewHandler handler, WebView webView) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WebView Mixed Content on Android https://docs.microsoft.com/en-us/xamarin/xamarin-forms/platform/android/webview-mixed-content
Platform.WebViewExtensions.UpdateDisplayZoomControls(handler.PlatformView, webView); | ||
} | ||
|
||
public static void MapEnableZoomControls(WebViewHandler handler, WebView webView) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WebView Zoom on Android https://docs.microsoft.com/en-us/xamarin/xamarin-forms/platform/android/webview-zoom-controls
Description of Change
Android Platform Specifics:
Fixes (partially) #5856