Android webview enable fullscreen video in aidi ide
Tutorial on how to enable/support the fullscreen view on the videos that play in your webviews aide ide project. The default webview fullscreen, is not supported. Now lets start, first add internet permission in "AndroidManifest.xml" <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> Next goto your layout e.g "main.xml" and paste this full codes: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:background="#000000"> <RelativeLayout android:id="@+id/nonVideoLayout" android:layou...