设置背景图像不起作用

时间:2012-03-16 22:25:25

标签: android android-layout

我在获取要在模拟器中显示的背景时遇到问题。它将显示在main.xml上,并且没有错误。所以屏幕刚出现黑色,这是我的main.xml:

   <?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/LinearLayout1"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical" 
   android:background = "@drawable/clearskies">

   <TextView
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:text="@string/hello" />

    </LinearLayout>

是的我确实在drawable文件夹中有我的图像,拼写是正确的,图像是.png

谁能看到我在这里做错了什么?

由于

2 个答案:

答案 0 :(得分:0)

检查您是否正在设置布局文件。

在onCreate()中,使用

setContentView(R.layout.main);

答案 1 :(得分:0)

如果是,那么你可以在你的xml的图形布局的背景中看到你的图像然后它必须对你的java文件有问题,否则你的图像有问题或者可以绘制其他内容......