图像在不同设备上更改位置

时间:2019-03-21 16:13:26

标签: android android-layout

我正在开发一个显示停车场并显示可用停车位的应用程序。但是,在不同设备上显示可用停车位时遇到问题。背景图像是停车场的草图,但是通过在停车场上方添加红色框可以显示停车场。但是,当我使用不同的设备时,红色方框会不断更改位置。

首先,这是我的XML文件,在其中我将背景图像上传到其中,并设置了一些必须放置在背景图像顶部的盒子的位置。

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".Map.LotDisplay">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="centerInside"
        android:id="@+id/map"
        android:orientation="horizontal"
        android:background="@drawable/parkingmap">
    </LinearLayout>

    <Spot
        android:id="@+id/spot0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="344dp"
        android:layout_marginTop="250dp"
        app:height="14dp"
        app:width="33dp" />

    <Spot
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/spot1"
        app:height="14dp"
        app:width="33dp"
        android:layout_marginTop="266dp"
        android:layout_marginLeft="344dp"/>

</RelativeLayout>

这是图片的外观:

Here is how the image should be looking

但是,这是我使用其他设备时的外观:

However, this is how it looks when I use a different device

谁能告诉我为什么会这样,为什么要解决?我以为使用dp应该可以解决问题,但是没有解决。

这是XML文件中引用的parkingmap.png:

This is parkingmap.png referenced in the XML file

谢谢!

2 个答案:

答案 0 :(得分:0)

首先,我很抱歉将其发布为答案,因为我无法发表评论(我没有50个声誉)。

很明显,位置将发生变化,因为您正在对layout_marginTopmarginLeft值进行硬编码,这对于所有设备都是通用的。

但是有解决方案,请尝试使用此库android sdp

通过该库,您可以在dp单元中使用sdp。

我希望这会对您有所帮助。

答案 1 :(得分:0)

请尝试此操作。希望这对多种屏幕类型都适用

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.constraint.ConstraintLayout
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/map"
    android:orientation="horizontal"
    android:scaleType="centerInside"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toTopOf="parent">




    <Spot
        android:id="@+id/spot0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="@dimen/_26sdp"
        android:layout_marginBottom="@dimen/_100sdp"
        android:layout_weight="1"
        android:background="@color/colorPrimaryDark"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Spot
        android:id="@+id/spot1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="@dimen/_26sdp"
        android:layout_marginBottom="@dimen/_135sdp"
        android:layout_weight="1"
        android:background="@color/colorPrimaryDark"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

将此内容添加到Gradle文件中

implementation 'com.intuit.sdp:sdp-android:1.0.6'