使用imageview时android.view.InflateException

时间:2017-09-27 11:06:55

标签: android layout imageview inflate-exception

我试图将一个imageview放在顶部以显示徽标,但是当我运行应用程序时出现此错误:

  

android.view.InflateException:二进制XML文件行#13:错误   inflating类android.widget.ImageView

如果我删除该imageview代码运行没有问题

我在这里解决这个问题的方法是activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
    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:paddingTop="@dimen/activity_vertical_margin"
    android:background="#2e3138"

    tools:context="dattasolutions.cloud.dattasolutionscloud.MainActivity"
    android:orientation="vertical"
  >
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="60dp"
        android:src="@drawable/logo"
        android:id="@+id/imageView"
        />

    <TextView

        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="17sp"
        android:id="@+id/tvHeading"
        android:text="Presiona el icono para subir archivos al servidor"
        android:textColor="#fff"
        android:textStyle="bold"
        android:layout_marginTop="64dp" />
    <ImageView
        android:id="@+id/ivAttachment"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:src="@drawable/attach_icon"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:layout_x="145dp"
        android:layout_y="171dp" />

    <TextView
        android:id="@+id/tv_file_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#fff"
        android:layout_marginTop="10dp"
        android:gravity="center"
        android:layout_below="@+id/ivAttachment"
        android:layout_centerHorizontal="true"/>

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/b_upload"
        android:text="Upload"
        android:textStyle="bold"
        android:textSize="20sp"
        android:layout_alignParentBottom="true"
        android:gravity="center"
        android:textColor="#fff"
        android:background="#039be5"/>



</RelativeLayout>

enter image description here

2 个答案:

答案 0 :(得分:2)

尝试替换。          android:src="@drawable/logo"

使用。
        app:srcCompat="@drawable/logo"
reason

如果仍然无效,请检查图像的大小。有时它实际上不是膨胀问题,而是更深层次的问题,即记忆问题导致通货膨胀例外。使用最小必要尺寸的图像。 希望它有所帮助。

答案 1 :(得分:0)

问题在于您的图片名为“徽标”,请尝试其他图片并检查是否是图片格式或尺寸等问题。这样你就可以了轻松了解问题以及您应该在未来中使用哪种类型的图片。祝你好运!