Remove the bitmap draw/copy from DayView

This cuts out the code that did a separate draw to a bitmap
and then copied it over to the canvas and instead draws directly
to the canvas. This allows us to also have a background image
and speeds up draws significantly.

Change-Id: I3a7c396c182477dfe17e6d5d65acc45f986b9af5
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 95397ff..d2c3879 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -39,7 +39,8 @@
 
     <application android:name="CalendarApplication"
             android:label="@string/app_label" android:icon="@drawable/app_icon"
-            android:taskAffinity="android.task.calendar">
+            android:taskAffinity="android.task.calendar"
+            android:hardwareAccelerated="false" >
 
         <activity
             android:name="AllInOneActivity"