Searched refs:frameLayout (Results 1 – 3 of 3) sorted by relevance
17 private FrameLayout frameLayout; field in ShadowFrameLayoutTest21 frameLayout = new FrameLayout(ApplicationProvider.getApplicationContext()); in setUp()26 assertNotNull(frameLayout); in testNotNull()31 assertThat(frameLayout.getHeight()).isEqualTo(0); in onMeasure_shouldNotLayout()32 assertThat(frameLayout.getWidth()).isEqualTo(0); in onMeasure_shouldNotLayout()34 frameLayout.measure(View.MeasureSpec.makeMeasureSpec(150, View.MeasureSpec.AT_MOST), in onMeasure_shouldNotLayout()37 assertThat(frameLayout.getHeight()).isEqualTo(0); in onMeasure_shouldNotLayout()38 assertThat(frameLayout.getWidth()).isEqualTo(0); in onMeasure_shouldNotLayout()
173 ViewGroup frameLayout = (ViewGroup) viewGroup.getChildAt(1); in shouldNotCountRequestFocusElementAsChild() local174 assertEquals(0, frameLayout.getChildCount()); in shouldNotCountRequestFocusElementAsChild()
129 FrameLayout frameLayout = new FrameLayout(parent.getContext()); in onCreateViewHolder() local133 frameLayout.setLayoutParams(params); in onCreateViewHolder()134 return new HeaderViewHolder(frameLayout); in onCreateViewHolder()