Searched refs:visible (Results 101 - 125 of 208) sorted by relevance

123456789

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationHeaderUtil.java199 // in case no view is visible we make sure the time is visible
209 boolean visible = false;
218 visible = left != null;
223 child.setVisibility(visible ? View.VISIBLE : View.GONE);
H A DStatusBarIconView.java151 && mIcon.visible == icon.visible;
178 setVisibility(icon.visible && !mBlocked ? VISIBLE : GONE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowManager.java270 public void setPanelVisible(boolean visible) { argument
271 mCurrentState.panelVisible = visible;
272 mCurrentState.statusBarFocusable = visible;
H A DStatusBarIconController.java269 if (icon == null || icon.visible == visibility) {
272 icon.visible = visibility;
331 public void setClockVisibility(boolean visible) { argument
332 mClock.setVisibility(visible ? View.VISIBLE : View.GONE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DFreeformWorkspaceLayoutAlgorithm.java165 transformOut.visible = true;
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DEvents.java115 MetricsLogger.visible(context, MetricsEvent.VOLUME_DIALOG);
H A DVolumeDialogController.java200 public void notifyVisible(boolean visible) { argument
202 mWorker.obtainMessage(W.NOTIFY_VISIBLE, visible ? 1 : 0, 0).sendToTarget();
251 private void onNotifyVisibleW(boolean visible) { argument
253 mAudio.notifyVolumeControllerVisible(mVolumeController, visible);
254 if (!visible) {
486 public void showDndTile(boolean visible) { argument
488 DndTile.setVisible(mContext, visible);
/frameworks/native/services/inputflinger/
H A DInputWindow.h126 bool visible; member in struct:android::InputWindowInfo
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DAnimatedVectorDrawableCompat.java285 public boolean setVisible(boolean visible, boolean restart) { argument
287 return mDelegateDrawable.setVisible(visible, restart);
289 mAnimatedVectorState.mVectorDrawable.setVisible(visible, restart);
290 return super.setVisible(visible, restart);
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java176 * is actually visible, used for computing its visible insets to be
180 * are visible.
238 * Retrieve the frame of the visible area that this window was last
240 * will actually be fully visible. It will be smaller than the
245 * @return Rect The rectangle holding the visible frame.
267 * Retrieve the insets given by this window's client for the visible
272 * to the window's frame, of the actual visible area.
335 * Is this window visible? It is not visible i
1311 setRecentsVisibilityLw(boolean visible) argument
1316 setTvPipVisibilityLw(boolean visible) argument
[all...]
/frameworks/base/media/java/android/media/
H A DIAudioService.aidl142 void notifyVolumeControllerVisible(in IVolumeController controller, boolean visible);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DBluetoothTile.java246 public void setItemsVisible(boolean visible) { argument
248 mItems.setItemsVisible(visible);
H A DCellularTile.java205 mInfo.enabled = qsIcon.visible;
235 mInfo.airplaneModeEnabled = icon.visible;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatActivity.java305 public void setSupportProgressBarVisibility(boolean visible) { argument
312 public void setSupportProgressBarIndeterminateVisibility(boolean visible) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuItemWrapperICS.java178 public MenuItem setVisible(boolean visible) { argument
179 return mWrappedObject.setVisible(visible);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListViewCompat.java264 * to have at least 3 completely visible children, and
406 public boolean setVisible(boolean visible, boolean restart) { argument
408 return super.setVisible(visible, restart);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java238 public void onVisibilityChanged(boolean visible) { argument
240 Log.d(TAG, "onVisibilityChanged: mVisible, visible=" + mVisible + ", " + visible);
243 if (mVisible != visible) {
245 Log.d(TAG, "Visibility changed to visible=" + visible);
247 mVisible = visible;
248 if (visible) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java280 * will be visible, otherwise no excluded tasks will be
281 * visible.
384 * Returns whether the recents activity is currently visible.
391 * Returns whether the recents activity is currently visible.
393 * @param isHomeStackVisible if provided, will return whether the home stack is visible
405 boolean homeStackVisibleNotOccluded = stackInfo.visible;
407 boolean isFullscreenStackOccludingHome = fullscreenStackInfo.visible &&
991 // We show non-visible docked tasks in Recents, but we always want to launch
1100 public void setRecentsVisibility(boolean visible) { argument
1102 mIwm.setRecentsVisibility(visible);
1111 setTvPipVisibility(boolean visible) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStack.java217 // Stack is not considered visible.
219 // Stack is considered visible
221 // Stack is considered visible, but only becuase it has activity that is visible behind other
1003 // Stop visible behind activity before going to sleep.
1006 if (DEBUG_STATES) Slog.v(TAG_STATES, "Sleep still waiting to stop visible behind " + r);
1016 // Make sure any paused or stopped but visible activities are now sleeping.
1295 + " wasStopping=" + wasStopping + " visible=" + prev.visible);
1310 } else if ((!prev.visible
1451 setVisible(ActivityRecord r, boolean visible) argument
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DCollapsingToolbarLayout.java63 * A title which is larger when the layout is fully visible but collapses and becomes smaller as
756 final boolean visible = visibility == VISIBLE;
757 if (mStatusBarScrim != null && mStatusBarScrim.isVisible() != visible) {
758 mStatusBarScrim.setVisible(visible, false);
760 if (mContentScrim != null && mContentScrim.isVisible() != visible) {
761 mContentScrim.setVisible(visible, false);
1040 * Set the amount of visible height in pixels used to define when to trigger a scrim
1043 * <p>If the visible height of this view is less than the given value, the scrims will be
1044 * made visible, otherwise they are hidden.</p>
1059 * Returns the amount of visible heigh
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedStateListDrawable.java87 public boolean setVisible(boolean visible, boolean restart) { argument
88 final boolean changed = super.setVisible(visible, restart);
91 if (visible) {
94 // Ensure we're showing the correct state when visible.
H A DDrawable.java104 * Though usually not visible to the application, Drawables may take a variety
802 * Set whether this Drawable is visible. This generally does not impact
806 * @param visible Set to true if visible, false if not.
808 * as if it has just become visible, even if it had last
809 * been set visible. Used for example to force animations
815 public boolean setVisible(boolean visible, boolean restart) { argument
816 boolean changed = mVisible != visible;
818 mVisible = visible;
873 * be visible
[all...]
H A DRippleDrawable.java138 /** Whether we expect to draw a background when visible. */
144 /** Whether we expect to draw a ripple when visible. */
318 public boolean setVisible(boolean visible, boolean restart) { argument
319 final boolean changed = super.setVisible(visible, restart);
321 if (!visible) {
324 // If we just became visible, ensure the background and ripple
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDevice.java425 public void setVisible(boolean visible) { argument
426 if (mVisible != visible) {
427 mVisible = visible;
653 // Visible above not visible
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DTransformState.java383 // completely visible. An example is the notification header.
482 public void setVisible(boolean visible, boolean force) { argument
487 mTransformedView.setVisibility(visible ? View.VISIBLE : View.INVISIBLE);
490 mTransformedView.setAlpha(visible ? 1.0f : 0.0f);

Completed in 660 milliseconds

123456789