Android embed video in iframe not resized on webview height change
问题 I am trying to play embeded youtube videos in webview. My problem is when I rotate screen and resize webview height, iframe is not changing its height. String embedSrc = "https://www.youtube.com/embed/8SeRU_ZPDkE"; String iframe = "<html><body style=\"margin: 0; padding: 0; background: #000;\"><iframe width=\"100%\" height=\" 100% \" src=\"" + embedSrc + "frameborder=\"0\" allowfullscreen style=\"background: #000;\"></iframe></body></html>"; webView.loadData(iframe, "text/html", "utf-8");