我在android中进行了一项设计,即在1440 X 2880屏幕和1440 X 2560屏幕上图像显示有所不同。如何正确做到这一点?专门用于1440 X 2880屏幕。我创建了hdpi,mdpi,xhdpi,xxhdpi,xxxhdpi图像,但仍然没有得到结果。
<?xml version="1.0enter code here" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/view_toolbar_logo"
android:id="@+id/relToolbar">
</include>
<RelativeLayout
android:layout_width="match_parent"
android:layout_below="@+id/relToolbar"
android:layout_marginRight="@dimen/_12sdp"
android:layout_marginLeft="@dimen/_12sdp"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@drawable/test"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/im1"
android:background="@drawable/ranking"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/im1"
android:layout_marginTop="@dimen/_10sdp"
android:background="@drawable/coin"/>
</RelativeLayout>
在Adobe Xd工具的帮助下,图像从.psd到.png,我需要像第一次捕捉图像一样进行设计