单个 LinearLayout 与单个 ConstraintLayout

Single LinearLayout vs Single ConstraintLayout

如果我只有一个 LinearLayout,里面有一些项目,那么用 ConstraintLayout 替换它会有什么影响

<LinearLayout>
   <TextView>
   <TextView>
   <TextView>
</LinearLayout>

<ConstraintLayout>
   <TextView>
   <TextView>
   <TextView>
</ConstraintLayout>

它们的效率有什么不同吗?

对于这种没有嵌套且只有 3 个子 TextView 的简单布局,LinearLayout 在概念复杂性、性能、Android Studio 的拖放用户界面和 XML 方面是最好的行,应用程序的 kB 大小。也许我忘记了什么,但在这种情况下,除了 LinearLayout 之外,我不敢浪费时间和乱用任何其他布局。