gpt4 book ai didi

android - 布置画面。需要工具栏留在底部

转载 作者:太空狗 更新时间:2023-10-29 16:09:38 25 4
gpt4 key购买 nike

我想将屏幕分成 2 个垂直段。底部工具栏应该固定 - 假设我希望 LinearLayout 无论如何都留在底部。

在顶部 - 我希望 ScrollView 会长大到工具栏,然后允许滚动。否则 - 它可以完全为空,但工具栏仍需要位于底部。

我怎样才能做到这一点?

最佳答案

一如既往,有几种方法。我会做以下事情

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1">
</ScrollView>
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<Button
android:text="Button1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Button
android:text="Button2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
</LinearLayout>
</LinearLayout>

这使用垂直线性布局并使用 wrap_content 将按钮放在底部,然后通过给 ScrollView 赋予权重“1”来为它提供剩余的空间。

关于android - 布置画面。需要工具栏留在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5943288/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com