Searched defs:mIcon (Results 1 - 11 of 11) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/preferences/
H A DSearchableItemPreference.java32 private Drawable mIcon; field in class:SearchableItemPreference
40 mIcon = icon;
47 icon.setImageDrawable(mIcon);
/packages/apps/Settings/src/com/android/settings/
H A DIconPreferenceScreen.java30 private Drawable mIcon; field in class:IconPreferenceScreen
44 mIcon = a.getDrawable(R.styleable.IconPreferenceScreen_icon);
51 if (imageView != null && mIcon != null) {
52 imageView.setImageDrawable(mIcon);
63 if ((icon == null && mIcon != null) || (icon != null && !icon.equals(mIcon))) {
64 mIcon = icon;
76 return mIcon;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DIcon.java23 private final BasicTexture mIcon; field in class:Icon
34 mIcon = icon;
57 mIcon.draw(canvas, xoffset, yoffset, mReqWidth, mReqHeight);
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactListFilterView.java34 private ImageView mIcon; field in class:ContactListFilterView
70 mIcon = (ImageView) findViewById(R.id.icon);
106 mIcon.setVisibility(View.VISIBLE);
108 mIcon.setImageDrawable(mFilter.icon);
110 mIcon.setImageResource(R.drawable.unknown_source);
123 mIcon.setVisibility(View.VISIBLE);
124 mIcon.setImageResource(iconResource);
126 mIcon.setVisibility(dropdown ? View.INVISIBLE : View.GONE);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DShortcutInfo.java63 private Bitmap mIcon; field in class:ShortcutInfo
78 mIcon = info.mIcon; // TODO: should make a copy here. maybe we don't need this ctor at all
91 mIcon = b;
95 if (mIcon == null) {
96 mIcon = iconCache.getIcon(this.intent);
97 this.usingFallbackIcon = iconCache.isDefaultIcon(mIcon);
99 return mIcon;
130 writeBitmap(values, mIcon);
133 writeBitmap(values, mIcon);
[all...]
H A DPagedViewIcon.java43 private Bitmap mIcon; field in class:PagedViewIcon
93 mIcon = info.iconBitmap;
94 setCompoundDrawablesWithIntrinsicBounds(null, new FastBitmapDrawable(mIcon), null, null);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DCorpusView.java36 private ImageView mIcon; field in class:CorpusView
55 mIcon = (ImageView) findViewById(R.id.source_icon);
64 mIcon.setImageDrawable(icon);
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DBalloonHint.java346 private Drawable mIcon; field in class:BalloonHint.BalloonView
349 * The label to be shown. It is enabled only if {@link #mIcon} is null.
373 mIcon = icon;
379 mIcon = null;
402 if (null != mIcon) {
403 measuredWidth += mIcon.getIntrinsicWidth();
404 measuredHeight += mIcon.getIntrinsicHeight();
430 if (null != mIcon) {
431 int marginLeft = (width - mIcon.getIntrinsicWidth()) / 2;
432 int marginRight = width - mIcon
[all...]
/packages/apps/Browser/src/com/android/browser/preferences/
H A DWebsiteSettingsFragment.java71 private Bitmap mIcon; field in class:WebsiteSettingsFragment.Site
86 mIcon = null;
140 mIcon = icon;
144 return mIcon;
170 dest.writeParcelable(mIcon, flags);
177 mIcon = in.readParcelable(null);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKey.java72 private Drawable mIcon; field in class:Key
192 mIcon = icon;
267 mIcon = iconsSet.getIcon(style.getInt(keyAttr, R.styleable.Keyboard_Key_keyIcon,
390 return mIcon;
398 mIcon = icon;
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailFragment.java1163 private final Drawable mIcon; field in class:ContactDetailFragment.NetworkTitleViewEntry
1170 this.mIcon = icon;
1197 return mIcon;

Completed in 335 milliseconds