【Android】在listview下面添加一个固定不动的Button

效果:
橙色为listview部分,红色为Button部分
【Android】在listview下面添加一个固定不动的Button

【Android】在listview下面添加一个固定不动的Button
设置:
两个控件的layout_height
android:layout_height=“wrap_content”

listview的layout_weight:
android:layout_weight=“1”

<ListView
        android:id="@+id/lv1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/peachpuff"
        android:layout_weight="1"
        />
    <Button
        android:id="@+id/query"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/lightcoral"
        android:textSize="23dp"
        android:text="GO"
        />
上一篇:python gui


下一篇:DMA CACHE一致性问题解决方案