gpt4 book ai didi

android - 屏幕底部是android中的菜单栏/工具栏

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:04:07 29 4
gpt4 key购买 nike

enter image description here

有人知道怎么做吗?

最佳答案

使用带有 alignParentBottom="true"的 LinearLayout

像这样:

<RelativeLayout
android:id="@+id/mainLyt"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Some layout things -->

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/bottomBar">

<!-- some scrolling content -->
</ScrollView>

<LinearLayout
android:id="@+id/bottomBar"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_alignParentBottom="true">

<!-- Some Buttons -->
</LinearLayout>

</RelativeLayout>

我没有尝试编译,您可能需要修正一些拼写错误,但这是一个基本的想法,您可以通过它来实现您想要做的事情。

关于android - 屏幕底部是android中的菜单栏/工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15214545/

29 4 0