minafaw3

webview ios

Nov 18th, 2021 (edited)
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. using System;
  2. using System.ComponentModel;
  3. using System.IO;
  4. using CoreGraphics;
  5. using Foundation;
  6. using UIKit;
  7. using WebKit;
  8. using wellPlayed.Controls;
  9. using wellPlayed.iOS.Renderers;
  10. using Xamarin.Forms;
  11. using Xamarin.Forms.Platform.iOS;
  12.  
  13. [assembly: ExportRenderer(typeof(HybridWebView), typeof(HybridWebViewRenderer))]
  14. namespace wellPlayed.iOS.Renderers
  15. {
  16. public class HybridWebViewRenderer : ViewRenderer<HybridWebView, WKWebView>
  17. {
  18.  
  19.  
  20. WKWebView wkWebView;
  21.  
  22. protected override void OnElementChanged(ElementChangedEventArgs<HybridWebView> e)
  23. {
  24. base.OnElementChanged(e);
  25.  
  26. if (Control == null)
  27. {
  28.  
  29. WKPreferences wkPreferences = new WKPreferences
  30. {
  31. JavaScriptEnabled = true,
  32. JavaScriptCanOpenWindowsAutomatically = true,
  33.  
  34. };
  35. wkPreferences.SetValueForKey(NSObject.FromObject(true), (NSString)"allowFileAccessFromFileURLs");
  36.  
  37. WKWebViewConfiguration configuration = new WKWebViewConfiguration()
  38. {
  39. AllowsInlineMediaPlayback = true,
  40.  
  41. };
  42. configuration.Preferences = wkPreferences;
  43.  
  44. wkWebView = new WKWebView(CGRect.Empty, configuration);
  45.  
  46. SetNativeControl(wkWebView);
  47. }
  48.  
  49. if (e.NewElement != null)
  50. {
  51. Control.BackgroundColor = UIColor.Green;
  52. }
  53. }
  54.  
  55. protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
  56. {
  57.  
  58. }
  59.  
  60. public override void Draw(CGRect rect)
  61. {
  62. base.Draw(rect);
  63.  
  64. Control.Frame = rect;
  65. }
  66. }
  67. }
  68.  
  69. ---------------------------------------------------------------------------------------------------------------------------------------
  70.  
  71. using System;
  72. using System.IO;
  73. using Foundation;
  74. using ObjCRuntime;
  75. using UIKit;
  76. using WebKit;
  77. using wellPlayed.Controls;
  78. using wellPlayed.iOS.Renderers;
  79. using Xamarin.Forms;
  80. using Xamarin.Forms.Platform.iOS;
  81.  
  82. [assembly: ExportRenderer(typeof(HybridWebView), typeof(HybridWebViewRenderer))]
  83. namespace wellPlayed.iOS.Renderers
  84. {
  85. public class HybridWebViewRenderer : ViewRenderer<WebView, WKWebView>
  86. {
  87.  
  88. WKWebView wkWebView;
  89. protected override void OnElementChanged(ElementChangedEventArgs<WebView> e)
  90. {
  91. base.OnElementChanged(e);
  92.  
  93. if (Control == null)
  94. {
  95. var config = new WKWebViewConfiguration();
  96.  
  97. config.AllowsInlineMediaPlayback = true;
  98. config.AllowsAirPlayForMediaPlayback = true;
  99. config.AllowsPictureInPictureMediaPlayback = true;
  100. config.MediaPlaybackAllowsAirPlay = true;
  101. config.MediaPlaybackRequiresUserAction = false;
  102. config.RequiresUserActionForMediaPlayback = false;
  103. config.MediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypes.None;
  104.  
  105. wkWebView = new WKWebView(Frame, config);
  106. wkWebView.NavigationDelegate = new WkWebviewPolicy();
  107. SetNativeControl(wkWebView);
  108. }
  109.  
  110.  
  111. }
  112. public class WkWebviewPolicy : WKNavigationDelegate
  113. {
  114.  
  115. public override void DecidePolicy(WKWebView webView, WKNavigationAction navigationAction, Action<WKNavigationActionPolicy> decisionHandler)
  116. {
  117. base.DecidePolicy(webView, navigationAction, decisionHandler);
  118. }
  119.  
  120. public override void DidFinishNavigation(WKWebView webView, WKNavigation navigation)
  121. {
  122. base.DidFinishNavigation(webView, navigation);
  123.  
  124. var JSstr = @"var videos = document.querySelectorAll('video'); for (var i = videos.length - 1; i >= 0; i--) { var ivideo = videos[i]; ivideo.setAttribute('webkit-playsinline','\'); ivideo.play(); };";
  125.  
  126. webView.EvaluateJavaScript(JSstr, null);
  127.  
  128. }
  129.  
  130. }
  131. }
  132. }
  133.  
  134.  
Add Comment
Please, Sign In to add comment