gpt4 book ai didi

android - RelativeLayout 中自动缩放按钮的宽度

转载 作者:搜寻专家 更新时间:2023-11-01 09:32:47 26 4
gpt4 key购买 nike

<?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">

<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="match_parent" />

<Button

android:id="@+id/btn2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/btn1"/>

<Button
android:id="@+id/btn2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/btn1"/>

<!--x7-->

我在其相对布局中放置了 7 个按钮。我想将它们的“宽度”调整为相同的大小以适合屏幕。我该怎么办

最佳答案

您可以使用 LinearLayout 作为父级,并可以提供 weightweightsum 来实现这一点,使用 Relative 布局你无法适应整个屏幕或它可能会超出基于设备的屏幕。

您可以使用如下所示的 LinearLayout 实现此目的,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="7"
android:layout_height="match_parent">
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />

<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />

</LinearLayout>

关于android - RelativeLayout 中自动缩放按钮的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45695107/

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