I have tried searching for helpful information on what the android.text.Layout class is and its application. I read the documentation page here and it is not clear how it is used and in what context. I could not find any direct questions regarding this class on StackOverflow or elsewhere, and so far it I haven't found it covered in the course material that I am using.
The reason I am searching for it is because I want to know if it is something entirely different from "layouts" as generally known, such as ConstraintLayout, LinearLayout etc., which are classes derived from the android.view.ViewGroup base class.
I feel there is a cause for confusion here because LinearLayout etc. which is what we usually mean by the word "layout" are derived from a ViewGroup class, whereas the class actually named "Layout" seems to have nothing to do with layouts as commonly known and is derived from java.lang.object (or kotlin.Any in Kotlin)
In this context, I request clarification and perspectives regarding the android.text.Layout class and its use. Thanks.