Home | History | Annotate | Download | only in ui

Lines Matching refs:mIcon

47     private ImageView mIcon;
89 mIcon = (ImageView) findViewById(R.id.attachment_tile_image);
191 final boolean large = width >= maxSize || scaledWidth >= mIcon.getWidth()
192 || height >= maxSize || scaledHeight >= mIcon.getHeight();
198 !(scaledWidth >= mIcon.getHeight() * skinnyThresholdRatio
199 && scaledHeight >= mIcon.getWidth() * skinnyThresholdRatio);
208 mIcon.setScaleType(ScaleType.CENTER);
212 mIcon.setScaleType(ScaleType.CENTER_CROP);
216 mIcon.setScaleType(ScaleType.CENTER);
219 mIcon.setImageBitmap(result);
226 return mIcon.getWidth();
231 return mIcon.getHeight();