我正在做一个 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>
它有效,但为什么编译器坚持这个警告?