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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationShelf.java 19 import static com.android.systemui.statusbar.phone.NotificationIconContainer.IconState.NO_VALUE;
321 NotificationIconContainer.IconState iconState = getIconState(icon);
322 if (iconState != null && iconState.clampedAppearAmount == 1.0f) {
326 } else if (iconState == null) {
327 Log.wtf(TAG, "iconState is null. ExpandedIcon: " + row.getEntry().expandedIcon
472 NotificationIconContainer.IconState iconState = getIconState(icon);
473 if (iconState == null)
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
NetworkControllerEthernetTest.java 9 import com.android.systemui.statusbar.policy.NetworkController.IconState;
45 ArgumentCaptor<IconState> iconArg = ArgumentCaptor.forClass(IconState.class);
49 IconState iconState = iconArg.getValue();
50 assertEquals("Ethernet visible, in status bar", visible, iconState.visible);
51 assertEquals("Ethernet icon, in status bar", icon, iconState.icon);
NetworkControllerBaseTest.java 55 import com.android.systemui.statusbar.policy.NetworkController.IconState;
327 ArgumentCaptor<IconState> iconArg = ArgumentCaptor.forClass(IconState.class);
338 IconState iconState = iconArg.getValue();
341 assertEquals("Visibility in, quick settings", visible, iconState.visible);
342 assertEquals("Signal icon in, quick settings", state, iconState.icon);
361 ArgumentCaptor<IconState> iconArg = ArgumentCaptor.forClass(IconState.class);
371 IconState iconState = iconArg.getValue()
    [all...]
NetworkControllerWifiTest.java 12 import com.android.systemui.statusbar.policy.NetworkController.IconState;
219 ArgumentCaptor<IconState> iconArg = ArgumentCaptor.forClass(IconState.class);
226 IconState iconState = iconArg.getValue();
228 assertEquals("WiFi connected, in quick settings", connected, iconState.visible);
229 assertEquals("WiFi signal, in quick settings", icon, iconState.icon);
234 ArgumentCaptor<IconState> iconArg = ArgumentCaptor.forClass(IconState.class);
239 IconState iconState = iconArg.getValue()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationIconContainer.java 135 private final HashMap<View, IconState> mIconStates = new HashMap<>();
154 private IconState mLastVisibleIconState;
155 private IconState mFirstVisibleIconState;
273 IconState v = new IconState();
358 ViewState iconState = mIconStates.get(view);
359 iconState.initFrom(view);
360 iconState.alpha = mIsolatedIcon == null || view == mIsolatedIcon ? 1.0f : 0.0f;
361 iconState.hidden = false;
383 IconState iconState = mIconStates.get(view)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectWizard.java 126 CreateAssetSetWizardState iconState = mValues.iconState;
127 iconState.type = AssetType.LAUNCHER;
128 iconState.outputName = "ic_launcher"; //$NON-NLS-1$
129 iconState.background = new RGB(0xff, 0xff, 0xff);
130 iconState.foreground = new RGB(0x33, 0xb6, 0xea);
131 iconState.trim = true;
134 //iconState.shape = GraphicGenerator.Shape.CIRCLE;
135 //iconState.sourceType = CreateAssetSetWizardState.SourceType.CLIPART;
136 //iconState.clipartName = "user.png"; //$NON-NLS-1
    [all...]
NewProjectWizardState.java 94 * the icon wizard state is stored in {@link #iconState}) */
100 public CreateAssetSetWizardState iconState = new CreateAssetSetWizardState();
TemplateWizard.java 111 protected WizardPage getIconPage(CreateAssetSetWizardState iconState) {
113 mIconPage = new ConfigureAssetSetPage(iconState);
NewProjectPage.java 229 mValues.iconState.minSdk = mValues.target.getVersion().getApiLevel();
230 mValues.minSdkLevel = mValues.iconState.minSdk;
235 mValues.iconState.minSdk = INITIAL_MIN_SDK;
559 mValues.iconState.minSdk = minSdk.intValue();
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
Events.java 201 private static String iconStateToString(int iconState) {
202 switch (iconState) {
206 default: return "unknown_state_" + iconState;
VolumeDialogImpl.java 393 Events.writeEvent(mContext, Events.EVENT_ICON_CLICK, row.stream, row.iconState);
    [all...]

Completed in 671 milliseconds