我正在使用Eclipse构建Android应用程序。我正在尝试在应用程序打开时创建一个简单的图像显示。
我已经在我的工作区中的res \ drawable-hdpi上保存了我的intro_image.png,我使用以下代码为布局创建了另一个xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/intro_image">
</LinearLayout>
当我在图形布局上查看结果时出现错误消息,说:“无法将@ drawable / into_image转换为drawable。无法解析资源@ drawable / intro_image”
我该如何解决这个问题? 谢谢。
答案 0 :(得分:0)
尝试刷新或清理您的项目。它会工作。无论何时将图像粘贴到drawable中,都必须刷新该文件夹。