gpt4 book ai didi

android - 垂直对齐重力没有响应

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:37:58 24 4
gpt4 key购买 nike

为什么这不会使 View 中的内容居中?

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_gravity="center_vertical"
tools:context=".MainActivity">

<EditText
android:id="@+id/messageTextField"
android:layout_weight="1"
android:inputType="number"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/messageTextFieldPlaceholder"
/>
<Button
android:id="@+id/sendButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sendButtonTitle"
android:onClick="sendMessage"
/>

</LinearLayout>

我看到了一些关于垂直对齐的 SO 线程,我也看到了 this ,但我只有一个水平的 LinearLayout,所以设置重力会左右调整 View 。

既然 LinearLayout 有父级的尺寸,它不会填满整个屏幕吗?

android:layout_gravity="center_vertical" 不应该将它的 subview 对齐到它的尺寸的中心(垂直)吗?

这就是我完成的编码对我来说有意义的东西,那么为什么 android 就没有意义了?

我是否需要另一个垂直的 LinearLayout 来容纳其中的所有其他内容并使用 android:layout_gravity="center_vertical"

最佳答案

layout_gravity:
一个 child 可以提供给的标准重力常数它的 parent 。

重力:
指定如何放置对象的内容,既在 x 轴和 y 轴上,在对象本身内。

因此,如果您希望内容垂直居中,则需要 gravity 而不是 layout_gravity

关于android - 垂直对齐重力没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14164876/

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