summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Popescu <andreip@google.com>2009-06-26 16:50:04 +0100
committerAndrei Popescu <andreip@google.com>2009-06-26 16:50:04 +0100
commit78f757042015063d016b15893a650c44fdfd4e5c (patch)
tree14a020c2b01716e4bf741258958bef848785c416
parentadc008d2d87676a2a32e93afba20156a2bf2355b (diff)
downloadpackages_apps_Browser-78f757042015063d016b15893a650c44fdfd4e5c.zip
packages_apps_Browser-78f757042015063d016b15893a650c44fdfd4e5c.tar.gz
packages_apps_Browser-78f757042015063d016b15893a650c44fdfd4e5c.tar.bz2
Make the video bg black. It is nicer
-rw-r--r--res/layout/custom_screen.xml2
-rw-r--r--src/com/android/browser/BrowserActivity.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/res/layout/custom_screen.xml b/res/layout/custom_screen.xml
index 0c4d7a2..2c41fef 100644
--- a/res/layout/custom_screen.xml
+++ b/res/layout/custom_screen.xml
@@ -17,7 +17,7 @@
<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:background="@color/black"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
diff --git a/src/com/android/browser/BrowserActivity.java b/src/com/android/browser/BrowserActivity.java
index afe21db..8336837 100644
--- a/src/com/android/browser/BrowserActivity.java
+++ b/src/com/android/browser/BrowserActivity.java
@@ -703,7 +703,7 @@ public class BrowserActivity extends Activity
frameLayout.addView(browserFrameLayout, COVER_SCREEN_PARAMS);
} else {
mCustomViewContainer = new FrameLayout(this);
- mCustomViewContainer.setBackgroundColor(Color.DKGRAY);
+ mCustomViewContainer.setBackgroundColor(Color.BLACK);
mContentView = new FrameLayout(this);
frameLayout.addView(mCustomViewContainer, COVER_SCREEN_PARAMS);
frameLayout.addView(mContentView, COVER_SCREEN_PARAMS);