diff options
author | Andrei Popescu <andreip@google.com> | 2009-06-26 14:11:30 +0100 |
---|---|---|
committer | Andrei Popescu <andreip@google.com> | 2009-06-26 14:11:30 +0100 |
commit | adc008d2d87676a2a32e93afba20156a2bf2355b (patch) | |
tree | 8a7c6f89cc692cbc91c80dbe883e45badd40152a /res/layout/custom_screen.xml | |
parent | e0f11cc13c4dfa739098026bf0daf44129445534 (diff) | |
download | packages_apps_browser-adc008d2d87676a2a32e93afba20156a2bf2355b.zip packages_apps_browser-adc008d2d87676a2a32e93afba20156a2bf2355b.tar.gz packages_apps_browser-adc008d2d87676a2a32e93afba20156a2bf2355b.tar.bz2 |
Fullscreen video support. Replaces 5140
Diffstat (limited to 'res/layout/custom_screen.xml')
-rw-r--r-- | res/layout/custom_screen.xml | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/res/layout/custom_screen.xml b/res/layout/custom_screen.xml index 95c8434..0c4d7a2 100644 --- a/res/layout/custom_screen.xml +++ b/res/layout/custom_screen.xml @@ -14,16 +14,24 @@ limitations under the License. --> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - > - <com.android.browser.TitleBar android:id="@+id/title_bar" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - /> - <FrameLayout android:id="@+id/main_content" +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"> + <FrameLayout android:id="@+id/fullscreen_custom_content" + android:visibility="gone" + android:background="@color/dark_gray" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:foreground="?android:attr/windowContentOverlay" + /> + <LinearLayout android:orientation="vertical" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + <com.android.browser.TitleBar android:id="@+id/title_bar" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + /> + <FrameLayout android:id="@+id/main_content" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:foreground="?android:attr/windowContentOverlay" /> -</LinearLayout>
\ No newline at end of file + </LinearLayout> +</FrameLayout>
\ No newline at end of file |