diff options
author | Michael Jurka <mikejurka@google.com> | 2012-06-25 15:11:21 -0700 |
---|---|---|
committer | Michael Jurka <mikejurka@google.com> | 2012-06-25 15:11:21 -0700 |
commit | f25ab44975bb0aaeaa88e8dc564f160bb640902e (patch) | |
tree | 84b64a90c57db43a3bb964f103875132130edd3e /core/java/android/appwidget | |
parent | 18ddb6ce6f3672a24a6f86ee4b28f5baa746bc20 (diff) | |
download | frameworks_base-f25ab44975bb0aaeaa88e8dc564f160bb640902e.zip frameworks_base-f25ab44975bb0aaeaa88e8dc564f160bb640902e.tar.gz frameworks_base-f25ab44975bb0aaeaa88e8dc564f160bb640902e.tar.bz2 |
Update documentation on max widget bitmap usage
Change-Id: I564afccc425f7e76501cb7ffd404ad369bdd396d
Diffstat (limited to 'core/java/android/appwidget')
-rw-r--r-- | core/java/android/appwidget/AppWidgetManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/appwidget/AppWidgetManager.java b/core/java/android/appwidget/AppWidgetManager.java index 3aa5181..810e790 100644 --- a/core/java/android/appwidget/AppWidgetManager.java +++ b/core/java/android/appwidget/AppWidgetManager.java @@ -323,7 +323,7 @@ public class AppWidgetManager { * * <p> * The total Bitmap memory used by the RemoteViews object cannot exceed that required to - * fill the screen once, ie. (screen width x screen height x 4) bytes. + * fill the screen 1.5 times, ie. (screen width x screen height x 4 x 1.5) bytes. * * @param appWidgetIds The AppWidget instances for which to set the RemoteViews. * @param views The RemoteViews object to show. @@ -391,7 +391,7 @@ public class AppWidgetManager { * * <p> * The total Bitmap memory used by the RemoteViews object cannot exceed that required to - * fill the screen once, ie. (screen width x screen height x 4) bytes. + * fill the screen 1.5 times, ie. (screen width x screen height x 4 x 1.5) bytes. * * @param appWidgetId The AppWidget instance for which to set the RemoteViews. * @param views The RemoteViews object to show. |