Thursday, November 19, 2020

What is frame layout

FrameLayout is the simplest implementation of ViewGroup. Child views are drawn are in a stack, where the latest added view is drawn at the top. Usually you can use one of the next approaches or combine them:

Add a single view hierarchy into FrameLayout

Add multiple children and use android:layout_gravity to navigate them




references:

https://www.tutorialspoint.com/android/android_frame_layout.htm


No comments:

Post a Comment