我在网上查了一些例子,这些例子只是展示如何单独使用ListView
,很无聊。
我们总是需要构建一个复杂的 UI,现在,我想写一个有两个的 UI,View
其中一个TextView
在 TOP,占用 30% 的空间,另一个是 a ListView
,它占用其余的空间,70 %。
如果我只是这样写:
<LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3"/>
<ListView
....
android:layout_weight="7"/>
</LinearLayout>
它不起作用....