What is true about Frame Layout?
-
Lets child views specify their position relative to the parent view or to each other
-
Enables child views to specify their own exact x/y coordinates on the screen
-
Aligns all children in a single direction - Vertically or Horizontally
-
Its basically a blank space on screen that can be later filled with a single object
-
None of above
Reveal answer
Fill a bubble to check yourself
D
Correct answer
Explanation
FrameLayout is designed to block out an area on the screen to display a single item, acting as a placeholder that can be filled dynamically. The distractors describe RelativeLayout (relative positioning), AbsoluteLayout (x/y coordinates), and LinearLayout (linear alignment of children), which are distinct layouts.