/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/ |
D | IconFactory.java | 41 public static Bitmap createIcon(Bitmap sourceImage, int iconWidth, int iconHeight, in createIcon() argument 50 if (sourceWidth == 0 || sourceHeight == 0 || iconWidth == 0 || iconHeight == 0) { in createIcon() 54 Bitmap icon = Bitmap.createBitmap(iconWidth, iconHeight, in createIcon() 76 int iconWidth = dest.getWidth(); in drawIcon() local 79 if (sourceWidth == 0 || sourceHeight == 0 || iconWidth == 0 || iconHeight == 0) { in drawIcon() 83 Rect destRect = new Rect(0, 0, iconWidth, iconHeight); in drawIcon() 92 float wScale = sourceWidth / (float) iconWidth; in drawIcon() 96 float iw = iconWidth * s; in drawIcon()
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
D | SecondLevelIndicatorControlBar.java | 85 int iconWidth = firstIndicatorButton.getMeasuredWidth(); in getTouchViewIndex() local 86 int buttonRange = iconWidth + ICON_SPACING; in getTouchViewIndex() 178 int iconWidth = mCloseIcon.getMeasuredWidth(); in onLayout() local 183 int increment = iconWidth + ICON_SPACING; in onLayout() 185 getChildAt(i).layout(offsetX, 0, offsetX + iconWidth, height); in onLayout() 190 offsetX = width - iconWidth - 2 * padding; in onLayout() 194 offsetX = width - iconWidth - padding; in onLayout() 196 mCloseIcon.layout(offsetX, 0, (offsetX + iconWidth), height); in onLayout()
|
/packages/apps/Settings/src/com/android/settings/ |
D | ActivityPicker.java | 374 int iconWidth = icon.getIntrinsicWidth(); in createIconThumbnail() local 377 if (iconWidth > 0 && iconHeight > 0) { in createIconThumbnail() 378 if (width < iconWidth || height < iconHeight) { in createIconThumbnail() 379 final float ratio = (float) iconWidth / iconHeight; in createIconThumbnail() 381 if (iconWidth > iconHeight) { in createIconThumbnail() 383 } else if (iconHeight > iconWidth) { in createIconThumbnail() 407 } else if (iconWidth < width && iconHeight < height) { in createIconThumbnail() 413 final int x = (width - iconWidth) / 2; in createIconThumbnail() 415 icon.setBounds(x, y, x + iconWidth, y + iconHeight); in createIconThumbnail()
|
/packages/apps/Settings/src/com/android/settings/display/ |
D | ConversationMessageView.java | 132 final int iconWidth = mContactIconView.getMeasuredWidth(); in onLayout() local 135 final int contentWidth = (right -left) - iconWidth - getPaddingLeft() - getPaddingRight(); in onLayout() 144 iconLeft = (right - left) - getPaddingRight() - iconWidth; in onLayout() 148 contentLeft = iconLeft + iconWidth; in onLayout() 153 contentLeft = iconLeft + iconWidth; in onLayout() 155 iconLeft = (right - left) - getPaddingRight() - iconWidth; in onLayout() 160 mContactIconView.layout(iconLeft, iconTop, iconLeft + iconWidth, iconTop + iconHeight); in onLayout()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | ClickShadowView.java | 94 int iconWidth = view.getRight() - view.getLeft(); in alignWithIconView() local 95 int iconHSpace = iconWidth - view.getCompoundPaddingRight() - view.getCompoundPaddingLeft(); in alignWithIconView() 102 + iconWidth * (1 - view.getScaleX()) / 2 /* gap due to scale */ in alignWithIconView()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/ |
D | AddAccessoryPreferenceFragment.java | 86 final int iconWidth = in getDeviceDrawable() local 90 tempDrawable.setBounds(0, 0, iconWidth, iconHeight); in getDeviceDrawable() 92 Bitmap.createBitmap(iconWidth, iconHeight, Bitmap.Config.ARGB_8888); in getDeviceDrawable()
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
D | ModePicker.java | 259 int iconWidth = ((ImageView) mModeSelectionIcon[MODE_CAMERA]) in onLayout() local 261 int padding = (viewWidth - iconWidth) / 2; in onLayout() 265 (l + padding + iconWidth), in onLayout()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | KeyboardView.java | 489 final int iconWidth; in onDrawKeyTopVisuals() local 491 iconWidth = (int)(keyWidth * mSpacebarIconWidthRatio); in onDrawKeyTopVisuals() 493 iconWidth = Math.min(icon.getIntrinsicWidth(), keyWidth); in onDrawKeyTopVisuals() 502 final int iconX = (keyWidth - iconWidth) / 2; // Align horizontally center. in onDrawKeyTopVisuals() 503 drawIcon(canvas, icon, iconX, iconY, iconWidth, iconHeight); in onDrawKeyTopVisuals()
|
D | MoreKeysKeyboardView.java | 96 final int iconWidth = Math.min(mDivider.getIntrinsicWidth(), keyWidth); in onDrawKeyTopVisuals() local 98 final int iconX = (keyWidth - iconWidth) / 2; // Align horizontally center in onDrawKeyTopVisuals() 100 drawIcon(canvas, mDivider, iconX, iconY, iconWidth, iconHeight); in onDrawKeyTopVisuals()
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/ |
D | ConversationMessageView.java | 195 final int iconWidth = mContactIconView.getMeasuredWidth(); in onLayout() local 198 final int contentWidth = (right -left) - iconWidth - getPaddingLeft() - getPaddingRight(); in onLayout() 206 iconLeft = (right - left) - getPaddingRight() - iconWidth; in onLayout() 210 contentLeft = iconLeft + iconWidth; in onLayout() 215 contentLeft = iconLeft + iconWidth; in onLayout() 217 iconLeft = (right - left) - getPaddingRight() - iconWidth; in onLayout() 222 mContactIconView.layout(iconLeft, iconTop, iconLeft + iconWidth, iconTop + iconHeight); in onLayout()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
D | ShortcutIntentBuilder.java | 418 int iconWidth = icon.getWidth(); in generatePhoneNumberIcon() local 419 dst.set(iconWidth - ((int) (20 * density)), -1, in generatePhoneNumberIcon() 420 iconWidth, ((int) (19 * density))); in generatePhoneNumberIcon()
|
D | ContactListItemView.java | 765 int iconWidth = mPresenceIcon.getMeasuredWidth(); in onLayout() local 767 rightBound - iconWidth, in onLayout() 771 statusRightBound -= (iconWidth + mPresenceIconMargin); in onLayout() 783 int iconWidth = mPresenceIcon.getMeasuredWidth(); in onLayout() local 787 leftBound + iconWidth, in onLayout() 789 statusLeftBound += (iconWidth + mPresenceIconMargin); in onLayout()
|