我有以下布局,每次尝试在Graphical Layout
中查看时都会显示以下错误消息。
<?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" >
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/my_greeting" />
</LinearLayout>
错误
找不到以下类: - ImageView(更改为android.widget.ImageView,修复构建路径,编辑XML)
答案 0 :(得分:1)
关闭该文件并重新打开它。如果不解决问题只需清理并重建项目。
答案 1 :(得分:0)
必须对图像源my_greeting
执行某些操作。检查源名称是否正确,并检查您是否提供了有效的扩展名。另外,尝试清理项目。