gpt4 book ai didi

java - 按钮的 MarginLeft

转载 作者:行者123 更新时间:2023-11-30 00:39:14 25 4
gpt4 key购买 nike

我创建了一个带有按钮的 RelativeLayout。我正在使用此 xml 代码并排创建四个按钮:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px">
<RelativeLayout
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/relativeLayout1">
<Button
android:text="7"
android:layout_alignParentLeft="true"
android:layout_width="170dp"
android:layout_height="75.0dp"
android:id="@+id/button1" />
<Button
android:text="8"
android:layout_marginLeft="165dp"
android:layout_width="150dp"
android:layout_height="75dp"
android:id="@+id/button2"
android:layout_marginRight="119.0dp" />
<Button
android:text="9"
android:layout_marginLeft="310dp"
android:layout_width="150dp"
android:layout_height="75.0dp"
android:id="@+id/button3" />
<Button
android:text="Enter"
android:layout_marginLeft="455dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/button3" />
</RelativeLayout>
</LinearLayout>

问题是我的边距是从 RelativeLayout 开始的,而不是从我的左侧对象开始的,在本例中是 Button。所以我的问题是:如果我将以不同的屏幕尺寸运行应用程序,我会遇到任何问题吗??

最佳答案

The problem is that my margin is been started from RelativeLayout and not from my left object which in this case is Button.

您可以将您的按钮放在另一个按钮的右侧,并且空白将在它们之间。

例子:

    <RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
android:id="@+id/button"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@color/blue" />

<Button
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="16dp"
android:layout_toRightOf="@id/button"
android:background="@color/accent" />
</RelativeLayout>

关于java - 按钮的 MarginLeft,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42810539/

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