如何解决不支持的类型ImageView错误?

时间:2017-02-15 10:00:29

标签: java android android-layout android-studio

我有两个xml文件。一个在布局中,另一个在布局中。但是

"http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"

标记为红色。我不知道这些是否相关?此外,如上所述我有错误不支持类型'imageview'。任何帮助将非常感谢,并提前感谢。

P.S。我是java编程的新手,本周开始。另一个p.s.我使用android studio ide

3 个答案:

答案 0 :(得分:1)

您可以添加任何代码示例吗? 如果您在问题中出现错误。 我认为这是因为使用以小写字母开头的imageview 而不是使用以大写字母开头的ImageView。

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:srcCompat="@drawable/mustache"
        android:id="@+id/snorAfbeelding"            
        />
</RelativeLayout>

答案 1 :(得分:1)

Android中没有Imageview。试试ImageView(区分大小写)。

答案 2 :(得分:-1)

请你发一些代码。使用ImageView代替Imageview可能会解决您的问题。