Android Studio总是说“嵌套的权重不利于性能” 我用一个技巧(一个带有match_parent,match_parent的容器)嵌套了它
我的问题是:
这是嵌套的吗?是我的布局标准吗?还是我只是用那个容器骗了Android Studio?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:weightSum="1"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Head"
/>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_weight="0.7"
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="right"
/>
<Button
android:layout_weight="0.3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="left"
/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Foot"
/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
您所要做的就是欺骗皮棉。如果您将真正的父对象的方向设置为水平,Android Studio也会警告没有用的父对象。
但是,尽管嵌套权重可能会降低性能,但是除非您使用的每个布局都充满了嵌套权重,否则您可能不会注意到它。如果可以避免,请不要使用它们,但是如果您避免的话,这不是世界末日。