Searched defs:icon (Results 76 - 81 of 81) sorted by relevance

1234

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java136 ViewGroup mFeedbackIconArea; // notification icons, IME icon, compat icon
251 // the battery icon
260 // network icons: either a combo icon that switches between mobile and data, or distinct
472 // the more notifications icon
716 entry.icon.setBackgroundColor(0);
732 entry.icon);
747 entry.icon.setBackgroundColor(0x20FFFFFF);
776 entry.icon.setBackgroundColor(0);
836 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { argument
840 updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, StatusBarIcon icon) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java329 // Lastly, call to the icon policy to install/update all the icons.
835 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { argument
837 + " icon=" + icon);
839 view.set(icon);
844 StatusBarIcon old, StatusBarIcon icon) {
846 + " old=" + old + " icon=" + icon);
848 view.set(icon);
1023 toShow.add(ent.icon);
843 updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, StatusBarIcon icon) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java289 public void setError(CharSequence error, Drawable icon) { argument
305 setErrorIcon(icon);
309 private void setErrorIcon(Drawable icon) { argument
312 mTextView.setCompoundDrawables(dr.mDrawableLeft, dr.mDrawableTop, icon,
315 mTextView.setCompoundDrawables(null, null, icon, null);
333 * at the middle of the error icon.
349 * at the bottom of the error icon.
353 * Compound, not extended, because the icon is not clipped
2670 int selectAllIconId = 0; // No icon by default
2672 // Provide an icon, tex
[all...]
H A DTextView.java4126 * icon and sets an error message that will be displayed in a popup when
4127 * the TextView has focus. The icon and error message will be reset to
4129 * <code>error</code> is <code>null</code>, the error message and icon
4147 * icon and sets an error message that will be displayed in a popup when
4148 * the TextView has focus. The icon and error message will be reset to
4152 * be cleared (and you should provide a <code>null</code> icon as well).
4154 public void setError(CharSequence error, Drawable icon) { argument
4156 mEditor.setError(error, icon);
4758 * Compound, not extended, because the icon is not clipped
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java1516 int icon, int windowFlags) {
1514 addStartingWindow(IBinder appToken, String packageName, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, int windowFlags) argument
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java4218 CharSequence nonLocalizedLabel, int labelRes, int icon,
4232 Slog.w(TAG, "Attempted to set icon of non-existing app token: " + token);
4253 // In this case, the starting icon has already
4418 labelRes, icon, windowFlags);
7401 sd.nonLocalizedLabel, sd.labelRes, sd.icon, sd.windowFlags);
4216 setAppStartingWindow(IBinder token, String pkg, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, int windowFlags, IBinder transferFrom, boolean createIfNeeded) argument

Completed in 87 milliseconds

1234