layout_marginTop 在 Android 工作室

layout_marginTop in Android Studio

我正在尝试在 Android Studio 中为应用程序创建登录页面。该页面的 XML 代码是 -

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:background="@color/colorPrimary"
    tools:context=".LoginChoice">


    <Button
        android:id="@+id/userbtn"
        android:layout_width="100dp"
        android:layout_height="30dp"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="450dp"
        android:onClick="userloginIntent"
        android:adjustViewBounds="true"
        android:background="@drawable/user_login_button_small"
        app:strokeColor="@android:color/white" />

    <androidx.appcompat.widget.AppCompatButton
        android:id="@+id/driverbtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:textColor="@android:color/white"
        android:onClick="driverloginIntent"
        android:paddingHorizontal="10dp"
        android:text="@string/driver_login"
        android:background="@drawable/buttonbg1"
        android:layout_marginVertical="20dp"
        android:layout_below="@+id/userbtn"/>

</RelativeLayout>

这里的问题是,我正在使用的 Buttons 在我的 phone 应用程序中 运行 比在 Design 中显示的要低得多] 区域 Android 工作室。 这是 android 工作室中的样子-

这是我 运行 我 phone 上的应用程序的屏幕截图-

为什么会发生这种情况,我该如何解决?

在 Android Studio 中,您可以选择用于可视化 layout.xml 的设备,默认设备的尺寸可能与您的物理设备不同。您可以更改它或添加设备定义以匹配您所需的设备。此外,您可以使用 Layout Validation 查看更准确的设计预览。

请记住,您使用的是 dp 作为度量单位,而不是标准的 pixels