From 4dc32e194b04480cca5fa118a6fe346e54ff23fa Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Wed, 3 Sep 2014 15:23:41 -0700 Subject: [PATCH] CB-7460: Fixing bug with KitKat where the background colour would override the CSS colours on the application --- framework/src/org/apache/cordova/CordovaActivity.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/framework/src/org/apache/cordova/CordovaActivity.java b/framework/src/org/apache/cordova/CordovaActivity.java index 190309ec..bf1fd6a4 100755 --- a/framework/src/org/apache/cordova/CordovaActivity.java +++ b/framework/src/org/apache/cordova/CordovaActivity.java @@ -248,10 +248,8 @@ public class CordovaActivity extends Activity implements CordovaInterface { root.addView((View) appView); setContentView(root); - // TODO: Setting this on the appView causes it to show when . int backgroundColor = preferences.getInteger("BackgroundColor", Color.BLACK); root.setBackgroundColor(backgroundColor); - appView.setBackgroundColor(backgroundColor); } /**