We can create a custom layout using this.
Answers
Answered by
1
Explanation:
You have to perform the following steps while creating custom Layout manager.
Extend your class from ViewGroup class.
You must override the onLayout() method. ...
Override onMeasure() method. ...
The onMeasure() and onLayout() method, will contain the logic to organize the child views with in parent layout.
Similar questions