gpt4 book ai didi

java - XML 布局 2 个 View 居中,1 个在顶部

转载 作者:行者123 更新时间:2023-11-29 07:35:51 27 4
gpt4 key购买 nike

我创建了线性布局,中间有两个按钮(按钮 1 和 2),但我无法管理它以在顶部创建 View 3,我需要让它填充整个宽度并调整它的高度(保持比例)。如何创建第三个 View ?

图片:

enter image description here

代码:

<?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="@drawable/bg"
android:layout_gravity="center_horizontal"
android:orientation="horizontal">

<LinearLayout
android:orientation="vertical"
android:layout_gravity="center_vertical"
android:layout_width="fill_parent" android:layout_height="wrap_content" >

<ImageButton
android:background="@drawable/btn_one"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_weight="1.0" />

<ImageButton
android:background="@drawable/btn_second"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_weight="1.0" />
</LinearLayout>

最佳答案

我建议你使用相对布局,它们是 android 中最接近“绝对布局”的东西,用图像按钮标签替换按钮标签

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true">

</RelativeLayout>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button2"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="215dp" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button3"
android:layout_below="@+id/button2"
android:layout_alignStart="@+id/button2" />


</RelativeLayout>

关于java - XML 布局 2 个 View 居中,1 个在顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35956611/

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