可能无用的线性布局(我不这么认为)

时间:2013-01-30 16:08:34

标签: android android-layout android-widget android-linearlayout

我正在进行Android布局,编译器说“此LinearLayout布局或其LinearLayout父布局可能无用”。我想要一些编辑文本和按钮处于垂直布局,就像一个表单,但所有这些都具有70%的屏幕宽度。所以我做了:

<LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal"
  android:weightSum="1.0" >

    <LinearLayout
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="0.7"
        android:orientation="vertical" >

          ... my elements...

    </LinearLayout>
</LinearLayout>

它有效,但为什么编译器会坚持这个警告?

2 个答案:

答案 0 :(得分:3)

这是一个皮棉警告,并不完美。我有一个类似于你的案例,它警告一个无用的容器,但它真的没用。很多时候,lint很有帮助,偶尔你只需要轻拍它并忽略它。

答案 1 :(得分:0)

刚刚完成上一个答案: Lint将使用工具忽略此问题:ignore =“UselessParent” (您需要添加 xmlns:tools =“http://schemas.android.com/tools”作为命名空间)

<LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal"
  android:weightSum="1.0" >

    <LinearLayout
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="0.7"
        android:orientation="vertical"
        tools:ignore="UselessParent>
    </LinearLayout>
</LinearLayout>