Multiple choice technology platforms and products

What is true about Frame Layout?

  1. Lets child views specify their position relative to the parent view or to each other

  2. Enables child views to specify their own exact x/y coordinates on the screen

  3. Aligns all children in a single direction - Vertically or Horizontally

  4. Its basically a blank space on screen that can be later filled with a single object

  5. 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.