gpt4 book ai didi

android:gravity ="center"没有按预期工作

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:05 24 4
gpt4 key购买 nike

我有以下 xml 文件

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="100dp"
android:orientation="vertical"
android:background="#ff0000">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00ff00"
android:text="Button"
android:layout_gravity="center"/>
</LinearLayout>

</LinearLayout>

具有以下设计。

enter image description here

难道 button 不应该也垂直放置在中心吗?我知道 layout_gravitygravity 是如何工作的。所以根据我的理解,按钮应该绝对位于水平和垂直的中心。

最佳答案

您必须在 LinearLayout 中添加 android:gravity="center"

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="100dp"
android:orientation="vertical"
android:gravity="center"
android:background="#ff0000">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00ff00"
android:text="Button"
android:layout_gravity="center"/>
</LinearLayout>

关于android:gravity ="center"没有按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35370219/

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