gpt4 book ai didi

android - 如何在页面android布局的底部和中心放置一个 View ?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:02 27 4
gpt4 key购买 nike

我正在使用布局并希望在页面的中心和底部显示 View 。我正在使用以下代码,但在平板电脑上显示时它停留在左下角而不是居中。如何让它居中。

<LinearLayout android:layout_height="wrap_content" android:background="@color/black"
android:id="@+id/ll_bookmarkslistad" android:layout_width="fill_parent" android:gravity="center_horizontal|bottom"
android:layout_gravity="bottom|center_horizontal">

最佳答案

您需要做的是将您的这个LinearLayout 放入RelativeLayout 中。相对布局最好是带有 fill_parent 高度的根布局,因为它必须到达底部。

然后将其添加到您的 LinearLayout 而不是重力:

android:layout_centerHorizontal="true" android:layout_alignParentBottom="true"

例子:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_height="wrap_content" android:background="@color/black"
android:id="@+id/ll_bookmarkslistad" android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
>
<!-- stuff inside layout -->
</LinearLayout>
</RelativeLayout>

关于android - 如何在页面android布局的底部和中心放置一个 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8166785/

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