我目前正在使用eclipse作为我的IDE开发基本应用程序。我目前无法将图像设置为背景。我跟踪了一个告诉我将我的图像放在drawable-mdpi文件夹中并将其命名为图标的tutoral。我试过这个,但它仍然放在andriod图标中,即使我删除了andriod图标图像。有没有更好的方法呢?
由于
答案 0 :(得分:4)
试试这个:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="center_horizontal" android:background="@drawable/background"></LinearLayout>
background是一个.png文件。带有边框用Nine9Patch围绕它绘制。
希望这有帮助