Home | History | Annotate | Download | only in appwidget

Lines Matching defs:newOptions

246      * @param newOptions The bundle of options, in addition to the size information,
254 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth,
256 updateAppWidgetSize(newOptions, minWidth, minHeight, maxWidth, maxHeight, false);
262 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth,
264 if (newOptions == null) {
265 newOptions = new Bundle();
295 newOptions.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, newMinWidth);
296 newOptions.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, newMinHeight);
297 newOptions.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, newMaxWidth);
298 newOptions.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, newMaxHeight);
299 updateAppWidgetOptions(newOptions);