我正在尝试使用静态标题和可滚动的动态列表进行活动。这是布局:
<GridLayout
android:id="@+id/GridLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:paddingTop="5dp"
android:paddingLeft="5dp"
android:paddingRight="5dp">
<ListView
android:id="@+id/listex"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
我尝试使用 height=0dp & weight=1 解决方案,但结果是当我向列表中添加某些内容时,它没有显示任何元素。
如果我使用 height= match_parent & weight=1 元素会显示但不可滚动
请帮忙,我尝试了很多组合gettign没有结果。
谢谢。