将图片设置为android中活动的背景

时间:2013-10-08 15:36:38

标签: android xml background

我正在尝试设置在soccer_field文件夹中设置此图片drawable。当我查看“图形布局”时它会显示背景,但是当我在我的设备上运行它时它不是..

<LinearLayout 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/soccer_field"
android:orientation="horizontal">
</LinearLayout>

为什么会发生这种情况以及如何解决?

1 个答案:

答案 0 :(得分:1)

唯一的区别可能是Emulator和您的设备之间的屏幕分辨率不同。所以也许你的设备正在寻找另一个可绘制的文件夹,比如drawable-xhdpi,它无法在他们或任何其他适合设备分辨率的可绘制文件夹中找到drawable。

Here you can find more about this