Home
last modified time | relevance | path

Searched refs:popupView (Results 1 – 5 of 5) sorted by relevance

/cts/tests/surfacecontrol/src/android/view/surfacecontrol/cts/
DFlagSecureTest.java78 View popupView = new View(mActivity); in testChildWindowInheritsFlagSecure() local
79 popupView.setBackgroundColor(Color.RED); in testChildWindowInheritsFlagSecure()
80 PopupWindow popupWindow = new PopupWindow(popupView, 100, 100); in testChildWindowInheritsFlagSecure()
107 CtsWindowInfoUtils.waitForWindowVisible(popupView)); in testChildWindowInheritsFlagSecure()
DSurfaceControlViewHostTests.java1448 FrameLayout popupView = new FrameLayout(mActivity); in testFloatingWindowWrapContent() local
1449 popupView.addView(popupContent); in testFloatingWindowWrapContent()
1460 windowManager.addView(popupView, layoutParams); in testFloatingWindowWrapContent()
1470 popupView::getWindowToken, mActivity.getDisplay().getDisplayId())); in testFloatingWindowWrapContent()
1481 View popupView = new FrameLayout(mActivity); in testFloatingWindowMatchParent() local
1482 popupView.setBackgroundColor(Color.BLUE); in testFloatingWindowMatchParent()
1492 windowManager.addView(popupView, layoutParams); in testFloatingWindowMatchParent()
1498 popupView::getWindowToken, mActivity.getDisplay().getDisplayId())); in testFloatingWindowMatchParent()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DHifiUltrasoundTestActivity.java62 private View popupView; field in HifiUltrasoundTestActivity
128 popupView = layoutInflater.inflate(R.layout.hifi_ultrasound_popup, null); in onCreate()
130 popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); in onCreate()
217 Button dismissButton = (Button)popupView.findViewById(R.id.dismiss); in plotResponse()
230 XYPlot plot = (XYPlot) popupView.findViewById(R.id.responseChart); in plotResponse()
DHifiUltrasoundSpeakerTestActivity.java66 private View popupView; field in HifiUltrasoundSpeakerTestActivity
145 popupView = layoutInflater.inflate(R.layout.hifi_ultrasound_popup, null); in onCreate()
147 popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); in onCreate()
258 Button dismissButton = (Button)popupView.findViewById(R.id.dismiss); in plotResponse()
271 XYPlot plot = (XYPlot) popupView.findViewById(R.id.responseChart); in plotResponse()
/cts/tests/tests/widget/src/android/widget/cts/
DPopupWindowTest.java2152 final View popupView = new View(mActivity); in createPopupContent() local
2153 popupView.setLayoutParams(new ViewGroup.LayoutParams(width, height)); in createPopupContent()
2154 popupView.setBackgroundColor(Color.MAGENTA); in createPopupContent()
2156 return popupView; in createPopupContent()