Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowFrameLayoutTest.java17 private FrameLayout frameLayout; field in ShadowFrameLayoutTest
21 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()
DShadowLayoutInflaterTest.java173 ViewGroup frameLayout = (ViewGroup) viewGroup.getChildAt(1); in shouldNotCountRequestFocusElementAsChild() local
174 assertEquals(0, frameLayout.getChildCount()); in shouldNotCountRequestFocusElementAsChild()
/external/setupdesign/main/src/com/google/android/setupdesign/view/
DHeaderRecyclerView.java129 FrameLayout frameLayout = new FrameLayout(parent.getContext()); in onCreateViewHolder() local
133 frameLayout.setLayoutParams(params); in onCreateViewHolder()
134 return new HeaderViewHolder(frameLayout); in onCreateViewHolder()