Home
last modified time | relevance | path

Searched refs:mContentView (Results 1 – 4 of 4) sorted by relevance

/cts/tests/framework/base/windowmanager/src/android/server/wm/backnavigation/
DBackGestureInvokedTest.java180 private FrameLayout mContentView; field in BackGestureInvokedTest.BackInvokedActivity
183 return mContentView; in getContentView()
189 mContentView = new FrameLayout(this); in onCreate()
190 setContentView(mContentView); in onCreate()
207 private FrameLayout mContentView; field in BackGestureInvokedTest.NewTaskActivity
212 mContentView = new FrameLayout(this); in onCreate()
213 mContentView.setBackgroundColor(Color.GREEN); in onCreate()
214 setContentView(mContentView); in onCreate()
219 private FrameLayout mContentView; field in BackGestureInvokedTest.SecondActivity
224 mContentView = new FrameLayout(this); in onCreate()
[all …]
/cts/tests/framework/base/windowmanager/src/android/server/wm/animations/
DMoveAnimationTests.java72 protected View mContentView; field in MoveAnimationTests.FloatingActivity
89 mContentView = new View(this); in onCreate()
90 mContentView.setBackgroundColor(Color.BLUE); in onCreate()
100 getWindow().setContentView(mContentView, new ViewGroup.LayoutParams(size, size)); in setContentSquare()
163 activity.mContentView.post(() -> activity.setContentSquare(200)); in assertPlaysMoveAnimation()
/cts/tests/tests/assist/service/src/android/assist/service/
DMainInteractionSession.java62 private View mContentView; field in MainInteractionSession
132 if (mContentView == null) return; // Happens when ui is not enabled. in onShow()
133 mContentView.getViewTreeObserver().addOnPreDrawListener( in onShow()
137 mContentView.getViewTreeObserver().removeOnPreDrawListener(this); in onShow()
138 Display d = mContentView.getDisplay(); in onShow()
177 bundle.putInt(Utils.EXTRA_CONTENT_VIEW_HEIGHT, mContentView.getHeight()); in onShow()
178 bundle.putInt(Utils.EXTRA_CONTENT_VIEW_WIDTH, mContentView.getWidth()); in onShow()
323 mContentView = f.inflate(R.layout.assist_layer,null); in onCreateContentView()
325 return mContentView; in onCreateContentView()
/cts/tests/framework/base/windowmanager/src/android/server/wm/window/
DWindowPolicyTests.java79 activity.mContentView.getRootWindowInsets(), in testWindowInsets()
80 activity.mContentView.mWindowInsets); in testWindowInsets()
93 getFrameOnScreen(activity.mContentView)); in assertFillWindowBounds()
263 private ContentView mContentView; field in WindowPolicyTests.TestActivity
274 mContentView = new ContentView(this); in onCreate()
275 mContentView.getViewTreeObserver().addOnGlobalLayoutListener(mLayoutLatch::countDown); in onCreate()
276 setContentView(mContentView); in onCreate()