0

我有一个名为 plan.jpg 的背景图像文件,它位于 drawable-mdpi 中。

在此处输入图像描述

我有以下 xml 来显示背景:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/plan"
    tools:context=".MainActivity" >

    <com.example.anothertest.DrawPlan
        android:id="@+id/drawPlan1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" >
    </com.example.anothertest.DrawPlan>

</RelativeLayout>

我还需要采取其他步骤吗?

4

1 回答 1

0

您应该尝试为 hdpi、ldpi 和 xhdpi 文件夹准备一个映像版本。

于 2013-06-07T10:50:16.770 回答