【Android】在listview下面添加一个固定不动的Button
2021/12/11 23:23:58
本文主要是介绍【Android】在listview下面添加一个固定不动的Button,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
效果:
橙色为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" />
这篇关于【Android】在listview下面添加一个固定不动的Button的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-01-18android.permission.read_media_video
- 2024-01-18android_getaddrinfo failed eai_nodata
- 2024-01-18androidmo
- 2024-01-15Android下三种离屏渲染技术
- 2024-01-09Android 蓝牙使用
- 2024-01-06Android对接华为AI - 文本识别
- 2023-11-15代码安全之代码混淆及加固(Android)
- 2023-11-10简述Android语音播报TTS
- 2023-11-06Android WiFi工具类
- 2023-07-22Android开发未来的出路