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

  /frameworks/ex/carousel/test/src/com/android/carouseltest/
TaskSwitcherActivity.java 182 final int thumbWidth = bitmap.getWidth();
184 if ((mPortraitMode && thumbWidth > thumbHeight)
185 || (!mPortraitMode && thumbWidth < thumbHeight)) {
187 matrix.setRotate(90.0f, (float) thumbWidth / 2, (float) thumbHeight / 2);
250 int thumbWidth = r.thumbnail.getWidth();
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/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 233 int thumbWidth = thumb == null ? 0 : thumb.getIntrinsicWidth();
241 if (thumbWidth > trackWidth) {
245 int gapForCenteringTrack = (thumbWidth - trackWidth) / 2;
258 int gap = (trackWidth - thumbWidth) / 2;
302 int thumbWidth = thumb.getIntrinsicWidth();
307 available = w - mPaddingLeft - mPaddingRight - thumbWidth;
323 rightBound = gap + thumbWidth;
341 thumb.setBounds(thumbPos, topBound, thumbPos + thumbWidth, bottomBound);