Home | History | Annotate | Download | only in appwidget

Lines Matching defs:newOptions

271      * @param newOptions The bundle of options, in addition to the size information,
279 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth,
281 updateAppWidgetSize(newOptions, minWidth, minHeight, maxWidth, maxHeight, false);
287 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth,
289 if (newOptions == null) {
290 newOptions = new Bundle();
320 newOptions.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, newMinWidth);
321 newOptions.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, newMinHeight);
322 newOptions.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, newMaxWidth);
323 newOptions.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, newMaxHeight);
324 updateAppWidgetOptions(newOptions);