]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/activity_webview.xml
Enable full screen video.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / activity_webview.xml
index d565fc0bd4418c09ac7acfe382288317ab1ba0dc..e00cdc12f08dd012f27b651b2411264322befd35 100644 (file)
@@ -1,5 +1,5 @@
 <RelativeLayout
-    android:id="@+id/relativeLayout"
+    android:id="@+id/rootRelativeLayout"
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent">
             android:focusable="true"
             android:focusableInTouchMode="true" />
 
+        <!-- fullScreenVideoFrameLayout is used to display full screen videos.  It is initially android:visibility="gone" to hide it from view. -->
+        <FrameLayout
+            android:id="@+id/fullScreenVideoFrameLayout"
+            android:layout_width="match_parent"
+            android:layout_height="match_parent"
+            android:visibility="gone"
+            android:background="#000000" />
+
 </RelativeLayout>