Searched refs:touchable (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerWindowManager.java86 public void setTouchable(boolean touchable) { argument
88 if (!touchable && (mLp.flags & FLAG_NOT_TOUCHABLE) == 0) {
91 } else if (touchable && (mLp.flags & FLAG_NOT_TOUCHABLE) != 0) {
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java124 public void setInsets(IWindow window, int touchable, Rect contentInsets, argument
/frameworks/base/core/java/android/view/
H A DFocusFinder.java681 * Find the nearest touchable view to the specified view.
689 * @return The nearest touchable view, or null if none exists.
704 View touchable = touchables.get(i);
707 touchable.getDrawingRect(touchableBounds);
709 root.offsetRectBetweenParentAndChild(touchable, touchableBounds, true, true);
738 closest = touchable;
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java753 * @return true if the popup is touchable, false otherwise
762 * <p>Changes the touchability of the popup window. When touchable, the
764 * window below it. By default the window is touchable.</p>
770 * @param touchable true if the popup should receive touch events, false otherwise
776 public void setTouchable(boolean touchable) { argument
777 mTouchable = touchable;
784 * @return true if the popup is outside touchable, false otherwise
794 * of its window. This only makes sense for pop-ups that are touchable
802 * @param touchable true if the popup should receive outside
809 public void setOutsideTouchable(boolean touchable) { argument
[all...]

Completed in 354 milliseconds