HomeSort by relevance Sort by last modified time
    Searched refs:thumbHeight (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 234 int thumbHeight = thumb == null ? 0 : thumb.getIntrinsicHeight();
242 if (thumbHeight > trackHeight) {
246 int gapForCenteringTrack = (thumbHeight - trackHeight) / 2;
259 int gap = (trackHeight - thumbHeight) / 2;
272 int thumbHeight = thumb.getIntrinsicHeight();
287 bottomBound = gap + thumbHeight;
311 int thumbHeight = mThumb == null ? 0 : mThumb.getIntrinsicHeight();
317 dh = Math.max(thumbHeight, dh);
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 264 int thumbHeight = thumb == null ? 0 : thumb.getIntrinsicHeight();
272 if (thumbHeight > trackHeight) {
276 int gapForCenteringTrack = (thumbHeight - trackHeight) / 2;
289 int gap = (trackHeight - thumbHeight) / 2;
303 int thumbHeight = thumb.getIntrinsicHeight();
305 available = h - mPaddingTop - mPaddingBottom - thumbHeight;
327 thumb.setBounds(leftBound, thumbPos, rightBound, thumbPos + thumbHeight);
337 bottomBound = gap + thumbHeight;
368 int thumbHeight = mThumb == null ? 0 : mThumb.getIntrinsicHeight();
374 dh = Math.max(thumbHeight, dh)
    [all...]
  /frameworks/ex/carousel/test/src/com/android/carouseltest/
TaskSwitcherActivity.java 183 final int thumbHeight = bitmap.getHeight();
184 if ((mPortraitMode && thumbWidth > thumbHeight)
185 || (!mPortraitMode && thumbWidth < thumbHeight)) {
187 matrix.setRotate(90.0f, (float) thumbWidth / 2, (float) thumbHeight / 2);
251 int thumbHeight = r.thumbnail.getHeight();
252 Log.v(TAG, "Got thumbnail " + thumbWidth + "x" + thumbHeight);
257 if ((mPortraitMode && thumbWidth > thumbHeight)
258 || (!mPortraitMode && thumbWidth < thumbHeight)) {
260 matrix.setRotate(90.0f, (float) thumbWidth / 2, (float) thumbHeight / 2);
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperListAdapter.java 208 int thumbHeight = res.getDimensionPixelSize(
211 Bitmap thumbnail = Bitmap.createBitmap(thumbWidth, thumbHeight,
218 galleryIcon.setBounds(0, 0, thumbWidth, thumbHeight);
229 thumbHeight - res.getDimensionPixelSize(
  /device/samsung/crespo/libcamera/
SecCamera.cpp 1214 int thumbWidth, thumbHeight, thumbSrcSize;
1215 getThumbnailConfig(&thumbWidth, &thumbHeight, &thumbSrcSize);
1219 if (jpgEnc.setConfig(JPEG_SET_ENCODE_HEIGHT, thumbHeight) != JPG_SUCCESS)
    [all...]

Completed in 57 milliseconds