If I have just a single LinearLayout with a few items in it, then what effects will be of replacing it with ConstraintLayout
<LinearLayout>
<TextView>
<TextView>
<TextView>
</LinearLayout>
vs
<ConstraintLayout>
<TextView>
<TextView>
<TextView>
</ConstraintLayout>
Are there any differences in their efficiencies?