HomeSort by relevance Sort by last modified time
    Searched refs:isShown (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListViewHeightTest.java 66 assertTrue("List not be visible after clicking button1", list.isShown());
75 assertTrue("List not be visible after clicking button2", list.isShown());
83 assertFalse("List should not be visible clicking button3", list.isShown());
  /packages/apps/TV/tests/unit/src/com/android/tv/
MainActivityTest.java 78 private void assertProgramGuide(boolean isShown) {
79 assertViewIsShown("Program Guide", R.id.program_guide, isShown);
82 private ChannelBannerView assertChannelBannerShown(boolean isShown) {
83 View v = assertExpectedBannerSceneClassShown(ChannelBannerView.class, isShown);
107 assertWithMessage(viewName + " shown").that(view.isShown()).isEqualTo(expected);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
QSCustomizer.java 71 private boolean isShown;
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() {
211 return isShown;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationRoundnessManager.java 103 updateRounding(oldFirst, oldFirst.isShown());
106 updateRounding(oldLast, oldLast.isShown());
109 updateRounding(mFirst, mFirst.isShown() && !mAnimatedChildren.contains(mFirst));
112 updateRounding(mLast, mLast.isShown() && !mAnimatedChildren.contains(mLast));
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/
AnimatedImageView.java 39 if (isShown() && mDrawable != null) {
48 if (isShown() && mAnimating) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidates1LineViewManager.java 158 if (!v.isShown()) {
176 if (!v.isShown()) {
258 if (!v.isShown()) {
270 if (!v.isShown()) {
283 if (!v.isShown()) {
296 if (!v.isShown()) {
373 if (mViewBody.isShown()) {
439 if (!(mViewBody.isShown())) {
512 if (mAutoHideMode && mViewBody.isShown()) {
569 if (!mViewBody.isShown()) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpAppearanceController.java 203 private void setShown(boolean isShown) {
204 if (mShown != isShown) {
205 mShown = isShown;
206 if (isShown) {
223 public boolean isShown() {
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/
AnimatedImageView.java 78 if (isShown() && mAllowAnimation) {
129 if (isShown() && mAllowAnimation) {
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/
QSIconViewImplTest.java 57 when(iv.isShown()).thenReturn(true);
80 when(iv.isShown()).thenReturn(true);
  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/swiperefreshmultipleviews/
MultiSwipeRefreshLayout.java 71 if (view != null && view.isShown() && !canViewScrollUp(view)) {
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/swiperefreshmultipleviews/
MultiSwipeRefreshLayout.java 71 if (view != null && view.isShown() && !canViewScrollUp(view)) {
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.swiperefreshmultipleviews/
MultiSwipeRefreshLayout.java 71 if (view != null && view.isShown() && !canViewScrollUp(view)) {
  /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/template/
ProgressBarMixinTest.java 88 assertTrue(mixin.isShown());
91 assertFalse(mixin.isShown());
  /packages/apps/Dialer/java/com/android/dialer/widget/
FloatingActionButtonController.java 69 /** @see FloatingActionButton#isShown() */
71 return fab.isShown();
137 if (animate && fab.isShown()) {
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
ProgressBarMixin.java 50 public boolean isShown() {
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
StickyHeaderScrollView.java 87 if (drawTop + drawOffset < mStatusBarInset || !drawTarget.isShown()) {
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
CcBccView.java 50 boolean ccWasAlreadyShown = mCc.isShown();
  /frameworks/base/core/java/android/view/
AccessibilityInteractionController.java 142 private boolean isShown(View view) {
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(root))
    [all...]
  /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/view/
StickyHeaderRecyclerView.java 105 if (drawTop + drawOffset < mStatusBarInset || !drawTarget.isShown()) {
  /packages/apps/Camera2/src/com/android/camera/widget/
ExternalViewerButton.java 139 if (isShown()) {
  /cts/tests/tests/view/src/android/view/cts/
SurfaceViewTest.java 161 assertTrue(mMockSurfaceView.isShown());
164 !mMockSurfaceView.isShown());
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
ViewElement.java 157 // isShown() checks the visibility flag of this view and ancestors; it
160 this.visible = view.isShown() && !visibleBounds.isEmpty();
217 if (!view.isShown() || !view.getGlobalVisibleRect(visibleBounds)) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
QSIconViewImpl.java 95 boolean shouldAnimate = iv.isShown() && mAnimationEnabled
140 if (iv.isShown() && mTint != 0) {
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
HeadsUpAppearanceControllerTest.java 103 Assert.assertTrue(mHeadsUpAppearanceController.isShown());
108 Assert.assertFalse(mHeadsUpAppearanceController.isShown());
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchViewController.java 149 if (shouldShowSearchBar && mSearchSuggestionList.isShown()) {
152 } else if (!shouldShowSearchBar && mSearchActionView.isShown()) {

Completed in 588 milliseconds

1 2 3 4 5