我有一个名为 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>
我还需要采取其他步骤吗?