HomeSort by relevance Sort by last modified time
    Searched refs:mPopupWindow (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 54 private PopupWindow mPopupWindow;
132 mPopupWindow = new PopupWindow();
133 assertEquals(0, mPopupWindow.getWidth());
134 assertEquals(0, mPopupWindow.getHeight());
140 mPopupWindow = new PopupWindow(50, 50);
141 assertEquals(50, mPopupWindow.getWidth());
142 assertEquals(50, mPopupWindow.getHeight());
148 mPopupWindow = new PopupWindow(-1, -1);
149 assertEquals(-1, mPopupWindow.getWidth());
150 assertEquals(-1, mPopupWindow.getHeight())
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
HeadUpDisplay.java 76 private PopupWindow mPopupWindow;
187 if(mPopupWindow != null
188 && mPopupWindow.getVisibility() == GLView.VISIBLE) {
213 mPopupWindow.measure(
217 width = mPopupWindow.getMeasuredWidth();
218 height = mPopupWindow.getMeasuredHeight();
226 mPopupWindow.setAnchorPosition(anchorY - yoffset);
227 mPopupWindow.layout(
233 mPopupWindow.popup();
242 mPopupWindow.popoff()
    [all...]

Completed in 155 milliseconds