Answers:
嵌套权重不利于性能,因为:
布局权重要求对小部件进行两次测量。当权重为非零的LinearLayout嵌套在权重为非零的另一个LinearLayout中时,度量的数量将呈指数增长。
最好使用RelativeLayout并根据其他视图的位置调整视图,而不使用特定的dpi值。
更新:据我们所知,API级别26不推荐使用百分比支持库。这ConstraintLayout
是实现相同平面xml结构的新方法。
更新的样本:
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/fifty_thirty"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#ffff8800"
android:gravity="center"
android:text="@string/fifty_fifty_text"
android:textColor="@android:color/white"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="0.5"
android:textSize="25sp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_default="percent"
app:layout_constraintWidth_percent="0.5" />
<TextView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#ffff5566"
android:gravity="center"
android:text="@string/fifty_fifty_text"
android:textColor="@android:color/white"
android:textSize="25sp"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="0.5"
app:layout_constraintLeft_toRightOf="@id/fifty_thirty"
app:layout_constraintTop_toBottomOf="@id/fifty_thirty"
app:layout_constraintWidth_default="percent"
app:layout_constraintWidth_percent="0.5" />
</android.support.constraint.ConstraintLayout>
更新:好消息android百分比支持库解决了我们的性能问题和嵌套凌乱的加权LinearLayout
compile 'com.android.support:percent:23.0.0'
考虑这个简单的布局来演示相同的内容。
<android.support.percent.PercentRelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/fifty_huntv"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#ff7acfff"
android:text="20% - 50%"
android:textColor="@android:color/white"
app:layout_heightPercent="20%"
app:layout_widthPercent="50%" />
<TextView
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_toRightOf="@id/fifty_huntv"
android:background="#ffff5566"
android:text="80%-50%"
app:layout_heightPercent="80%"
app:layout_widthPercent="50%"
/>
</android.support.percent.PercentRelativeLayout>
避免将性能降低器LinearLayout
与权重嵌套在一起。
我认为(对此我可能会感到恼火),但我仍然认为我的手机具有四核处理器,可以与大多数人的家用PC媲美(如果不能完全销毁)。
我也认为这种硬件功能是手机的未来。
因此,我得出一个结论,只要您不被嵌套困扰(在MHO中,布局的深度绝不能超过4层,如果是错的话),您的手机可能就不会在乎关于减肥。
您可以做很多事情,这些都会对性能产生更深远的影响,然后让您的处理器担心一些额外的数学运算。
(请注意,我有点幽默,所以不要从这篇文章中过分认真对待,否则会认为您首先需要优化其他东西,而担心2-3级深的重量并没有帮助你的健康)
嵌套权重不好的主要原因是,当布局中的子项具有权重时,必须对其进行两次测量(我认为这是皮棉警告中提到的)。这意味着还包含加权布局的加权布局必须测量四次,并且您添加的每个权重“层”以2的幂来增加度量。
在ICS(API级别14)GridLayout
中添加了,它为以前需要权重的许多布局提供了简单且“平坦”的解决方案。如果您是针对较早版本的Android开发的,则移除权重会有些困难,但是RelativeLayout
在驾驶室中使用和尽可能扁平化布局通常会消除很多嵌套的权重。
GridLayout
或 无法达到相同的结果RelativeLayout
。例如GridLayout
:“ GridLayout不支持按重量定义的重量原理。通常,因此,不可能将GridLayout配置为在多个组件之间分配多余的空间。”
有一个简单的解决方案可以避免使用权重嵌套的LinearLayouts-只需将TableLayoutout与weightSum一起使用,以及将LinearLineLayout与weightSum结合使用-Tablelayout与LinearLayout具有相同的属性(orientation,weightSum,layout_weight等),并且不显示消息-“嵌套权重对性能不利”
例:
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1">
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.8"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2"
android:orientation="horizontal"
android:weightSum="1">
<ImageView
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="0.4"/>
<TextView
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="0.6"/>
</LinearLayout>
</TableLayout>