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.java256 * @param minHeight The maximum height in dips that the widget will be displayed at.
261 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth, argument
263 updateAppWidgetSize(newOptions, minWidth, minHeight, maxWidth, maxHeight, false);
269 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth, argument
285 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) {
316 public int minHeight; field in class:SizeAdaptiveLayout.LayoutParams
345 minHeight = a.getDimensionPixelSize(MIN_VALID_HEIGHT, 0);
346 if (DEBUG) Log.d(TAG, "got minHeight of: " + minHeight);
370 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.java3080 public void setMinHeight(int minHeight) { argument
3081 mMinimum = minHeight;
/frameworks/base/core/java/android/view/
H A DView.java16694 * @param minHeight The minimum height the view will try to be.
16700 public void setMinimumHeight(int minHeight) { argument
16701 mMinHeight = minHeight;

Completed in 170 milliseconds