Home
last modified time | relevance | path

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

/cts/tests/fragment/src/android/fragment/cts/
DFragmentLifecycleTest.java225 View origView1 = f1.getView(); in viewReplace() local
226 assertNotNull("fragment 1 returned null view", origView1); in viewReplace()
227 assertTrue("fragment 1's view not attached", origView1.isAttachedToWindow()); in viewReplace()
235 assertFalse("fragment 1's old view still attached", origView1.isAttachedToWindow()); in viewReplace()
248 assertNotSame("fragment 1 had same view from last attachment", origView1, newView1); in viewReplace()
268 View origView1 = f1.getView(); in viewReplaceMultiple() local
269 assertNotNull("fragment 1 returned null view", origView1); in viewReplaceMultiple()
270 assertTrue("fragment 1's view not attached", origView1.isAttachedToWindow()); in viewReplaceMultiple()
271 assertSame(origView1, ((ViewGroup)origView1.getParent()).getChildAt(0)); in viewReplaceMultiple()
276 assertSame(origView2, ((ViewGroup)origView1.getParent()).getChildAt(1)); in viewReplaceMultiple()
[all …]