Searched defs:minHeight (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java79 * <p>This field corresponds to the <code>android:minHeight</code> attribute in
82 public int minHeight; field in class:AppWidgetProviderInfo
95 * is greater than minHeight or if vertical resizing isn't enabled (see {@link #resizeMode}).
209 this.minHeight = in.readInt();
234 out.writeInt(this.minHeight);
259 that.minHeight = this.minHeight;
H A DAppWidgetHostView.java248 * @param minHeight The maximum height in dips that the widget will be displayed at.
253 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth, argument
255 updateAppWidgetSize(newOptions, minWidth, minHeight, maxWidth, maxHeight, false);
261 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth, argument
277 int newMinHeight = minHeight - (ignorePadding ? 0 : yPaddingDips);
/frameworks/base/core/java/com/android/internal/widget/
H A DSizeAdaptiveLayout.java156 if (DEBUG) Log.d(TAG, "active min: " + lp.minHeight + " max: " + lp.maxHeight);
174 int height = Math.max(heightIn, lp.minHeight);
204 " with min: " + lp.minHeight +
214 if (lp.minHeight < smallestViewSize) {
215 smallestViewSize = lp.minHeight;
219 heightSize >= lp.minHeight && heightSize <= lp.maxHeight) {
318 public int minHeight; field in class:SizeAdaptiveLayout.LayoutParams
347 minHeight = a.getDimensionPixelSize(MIN_VALID_HEIGHT, 0);
348 if (DEBUG) Log.d(TAG, "got minHeight of: " + minHeight);
372 LayoutParams(int width, int height, int minHeight, int maxHeight) argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp250 uint32_t minHeight; member in struct:meas::displayFrame
258 uint32_t minHeight; member in struct:meas::sourceCrop
487 measPtr->df.minHeight = dfMinHeight(format->format);
488 testPrintI(" dfMinHeight: %u", measPtr->df.minHeight);
506 measPtr->sc.minHeight = scMinHeight(format->format, measPtr->df.minDim);
507 testPrintI(" scMinHeight: %u", measPtr->sc.minHeight);
/frameworks/base/core/java/android/widget/
H A DTextView.java2823 public void setMinHeight(int minHeight) { argument
2824 mMinimum = minHeight;
/frameworks/base/core/java/android/view/
H A DView.java15730 * @param minHeight The minimum height the view will try to be.
15736 public void setMinimumHeight(int minHeight) { argument
15737 mMinHeight = minHeight;

Completed in 1926 milliseconds