Searched defs:isShown (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
H A DProgressBarMixin.java50 public boolean isShown() { method in class:ProgressBarMixin
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DQSCustomizer.java71 private boolean isShown; field in class:QSCustomizer
141 mLightBarController.setQsCustomizing(mIsShowingNavBackdrop && isShown);
158 if (!isShown) {
162 isShown = true;
177 if (!isShown) {
180 isShown = true;
196 if (isShown) {
198 isShown = false;
210 public boolean isShown() { method in class:QSCustomizer
211 return isShown;
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DHeadsUpAppearanceController.java203 private void setShown(boolean isShown) { argument
204 if (mShown != isShown) {
205 mShown = isShown;
206 if (isShown) {
223 public boolean isShown() { method in class:HeadsUpAppearanceController
228 * Should the headsup status bar view be visible right now? This may be different from isShown,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DSmartReplyView.java650 boolean isShown() { method in class:SmartReplyView.LayoutParams
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java142 private boolean isShown(View view) { method in class:AccessibilityInteractionController
143 // The first two checks are made also made by isShown() which
149 && view.isShown());
335 if (root != null && isShown(root)) {
457 if (root != null && isShown(root)) {
474 if (isShown(foundView)) {
545 if (root != null && isShown(root)) {
555 if (!isShown(host)) {
572 if (target == null || !isShown(target)) {
640 if (root != null && isShown(roo
[all...]
H A DView.java7438 if (!isShown() && !isWindowDisappearedEvent) {
7446 // In the beginning we called #isShown(), so we know that getParent() is not null.
9590 public boolean isShown() { method in class:View
12890 * {@link #getWindowVisibility()} is {@link #VISIBLE} and this view's parent {@link #isShown()}.
14175 ((!(mParent instanceof ViewGroup)) || ((ViewGroup) mParent).isShown())) {
18365 if (isShown()) {
18392 if (isShown()) {
21200 highlight.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
21544 background.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
21748 foreground.setVisible(getWindowVisibility() == VISIBLE && isShown(), fals
[all...]

Completed in 788 milliseconds