Searched refs:visible (Results 26 - 50 of 159) sorted by relevance

1234567

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiScrollable.java84 * visible or not.
152 * scrolling and only on visible elements.
235 * a visible item that matches the {@link UiObject} is found.
248 * element until a visible item that matches the selector is found.
282 * Scrolls forward until the UiObject is fully visible in the scrollable container.
286 * @return true if the child element is already fully visible, or
287 * if the method scrolled successfully until the child became fully visible;
294 Rect visible = childObject.getVisibleBounds();
295 if (visible.width() * visible
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailItems.java146 public void setItemsVisible(boolean visible) { argument
148 mHandler.obtainMessage(H.SET_ITEMS_VISIBLE, visible ? 1 : 0, 0).sendToTarget();
167 private void handleSetItemsVisible(boolean visible) { argument
168 if (mItemsVisible == visible) return;
169 mItemsVisible = visible;
H A DQSTile.java399 public boolean visible; field in class:QSTile.State
409 final boolean changed = other.visible != visible
416 other.visible = visible;
432 sb.append("visible=").append(visible);
/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java51 * view and does the hit detection locally (attaches when visible, detaches when invisible).
183 // Doh, it is still null, just ignore the set visible call
185 "Cannot make the zoom controller visible if the owner view is " +
329 * Whether the zoom controls are visible to the user.
331 * @return Whether the zoom controls are visible to the user.
338 * Sets whether the zoom controls should be visible to the user.
340 * @param visible Whether the zoom controls should be visible to the user.
342 public void setVisible(boolean visible) { argument
344 if (visible) {
674 onVisibilityChanged(boolean visible) argument
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAbstractClassAdapter.java216 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
218 return super.visitAnnotation(desc, visible);
246 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
249 return super.visitAnnotation(desc, visible);
253 public AnnotationVisitor visitParameterAnnotation(int parameter, String desc, boolean visible) { argument
256 return super.visitParameterAnnotation(parameter, desc, visible);
H A DClassHasNativeVisitor.java55 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
H A DDelegateMethodAdapter.java175 true); // visible at runtime
297 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
299 return mOrgWriter.visitAnnotation(desc, visible);
317 boolean visible) {
319 return mOrgWriter.visitParameterAnnotation(parameter, desc, visible);
316 visitParameterAnnotation(int parameter, String desc, boolean visible) argument
H A DStubMethodAdapter.java212 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
213 return mParentVisitor.visitAnnotation(desc, visible);
224 boolean visible) {
225 return mParentVisitor.visitParameterAnnotation(parameter, desc, visible);
223 visitParameterAnnotation(int parameter, String desc, boolean visible) argument
/frameworks/base/core/java/android/app/
H A DStatusBarManager.java177 public void setIconVisibility(String slot, boolean visible) { argument
181 svc.setIconVisibility(slot, visible);
/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBarService.aidl31 void setIconVisibility(String slot, boolean visible);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java206 public MenuItem setVisible(boolean visible) { argument
207 mFlags = (mFlags & HIDDEN) | (visible ? 0 : HIDDEN);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuWrapperICS.java124 public void setGroupVisible(int group, boolean visible) { argument
125 mWrappedObject.setGroupVisible(group, visible);
/frameworks/base/core/java/android/view/
H A DMenuItem.java370 * Sets the visibility of the menu item. Even if a menu item is not visible,
374 * @param visible If true then the item will be visible; if false it is
378 public MenuItem setVisible(boolean visible); argument
383 * @return If true the item is visible; else it is hidden.
390 * visible.
H A DSurfaceView.java56 * <p> The transparent region that makes the surface visible is based on the
65 * visible; you should implement {@link SurfaceHolder.Callback#surfaceCreated}
378 * SurfaceView is in will be visible on top of its surface.
456 + " visible=" + visibleChanged
461 final boolean visible = mVisible = mRequestedVisible;
513 mDrawingStopped = !visible;
519 visible ? VISIBLE : GONE,
528 + ", vis=" + visible + ", frame=" + mWinFrame);
558 if (mSurfaceCreated && (surfaceChanged || (!visible && visibleChanged))) {
571 if (visible
682 dispatchAppVisibility(boolean visible) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java52 public void dispatchAppVisibility(boolean visible) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java151 public void setWifiIndicators(boolean visible, int strengthIcon, String contentDescription) { argument
152 mWifiVisible = visible;
160 public void setMobileDataIndicators(boolean visible, int strengthIcon, int typeIcon, argument
164 state.mMobileVisible = visible;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DNetworkControllerBaseTest.java220 protected void verifyLastQsMobileDataIndicators(boolean visible, int icon, int typeIcon, argument
237 assertEquals("Visibility in, quick settings", visible, (boolean) visibleArg.getValue());
246 protected void verifyLastMobileDataIndicators(boolean visible, int icon, int typeIcon) { argument
261 assertEquals("Visibility in status bar", visible, (boolean) visibleArg.getValue());
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputWindowHandle.cpp47 jfieldID visible; member in struct:android::__anon1007
141 mInfo->visible = env->GetBooleanField(obj,
142 gInputWindowHandleClassInfo.visible);
275 GET_FIELD_ID(gInputWindowHandleClassInfo.visible, clazz,
276 "visible", "Z");
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivity.java307 * @param visible Whether to show the progress bars in the title.
309 public void setSupportProgressBarVisibility(boolean visible) { argument
310 getDelegate().setSupportProgressBarVisibility(visible);
321 * @param visible Whether to show the progress bars in the title.
323 public void setSupportProgressBarIndeterminateVisibility(boolean visible) { argument
324 getDelegate().setSupportProgressBarIndeterminateVisibility(visible);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java93 /** Whether the drawable should animate when visible. */
103 * Sets whether this AnimationDrawable is visible.
106 * subsequent change to visible with <code>restart</code> set to true will
110 * @param visible true if visible, false otherwise
111 * @param restart when visible, true to force the animation to restart
116 public boolean setVisible(boolean visible, boolean restart) { argument
117 final boolean changed = super.setVisible(visible, restart);
118 if (visible) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DBluetoothTile.java93 state.visible = supported;
194 public void setItemsVisible(boolean visible) { argument
196 mItems.setItemsVisible(visible);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelBar.java160 boolean visible = pv.getExpandedHeight() > 0;
161 pv.setVisibility(visible ? View.VISIBLE : View.GONE);
162 // adjust any other panels that may be partially visible
170 mPanelExpandedFractionSum += (visible ? thisFrac : 0);
H A DKeyguardBottomAreaView.java242 boolean visible = !isCameraDisabledByDpm() && resolved != null
244 mCameraImageView.setVisibility(visible ? View.VISIBLE : View.GONE);
248 boolean visible = isPhoneVisible();
249 mPhoneImageView.setVisibility(visible ? View.VISIBLE : View.GONE);
389 boolean visible = isShown() && KeyguardUpdateMonitor.getInstance(mContext).isScreenOn();
390 if (visible) {
395 if (!visible) {
/frameworks/base/tests/WallpaperTest/src/com/example/wallpapertest/
H A DTestWallpaper.java130 public void onVisibilityChanged(boolean visible) { argument
131 mVisible = visible;
132 if (!visible) {
/frameworks/ex/framesequence/src/android/support/rastermill/
H A DFrameSequenceDrawable.java373 public boolean setVisible(boolean visible, boolean restart) { argument
374 boolean changed = super.setVisible(visible, restart);
376 if (!visible) {

Completed in 698 milliseconds

1234567