diff --git a/embedding/android/GeckoSurfaceView.java b/embedding/android/GeckoSurfaceView.java index 79043f2e5a69..1b406b247961 100644 --- a/embedding/android/GeckoSurfaceView.java +++ b/embedding/android/GeckoSurfaceView.java @@ -116,7 +116,7 @@ class GeckoSurfaceView int w = drawable.getIntrinsicWidth(); int h = drawable.getIntrinsicHeight(); int x = (width - w)/2; - int y = (height - h)/2; + int y = (height - h)/2 - 16; drawable.setBounds(x, y, x + w, y + h); drawable.draw(c); Paint p = new Paint(); @@ -124,7 +124,7 @@ class GeckoSurfaceView p.setTextSize(32f); p.setAntiAlias(true); p.setColor(res.getColor(R.color.splash_font)); - c.drawText(GeckoSurfaceView.mSplashStatusMsg, width/2, y + h + 32, p); + c.drawText(GeckoSurfaceView.mSplashStatusMsg, width/2, y + h + 16, p); holder.unlockCanvasAndPost(c); } diff --git a/embedding/android/resources/values/colors.xml b/embedding/android/resources/values/colors.xml index 5c61d6b82ea3..d50e243c64bf 100644 --- a/embedding/android/resources/values/colors.xml +++ b/embedding/android/resources/values/colors.xml @@ -1,6 +1,6 @@ - #3a3a3a + #000000 #ffffff