渲染问题和ImageView

时间:2019-02-23 14:03:29

标签: android android-appcompat src aapt aapt2

当我在Android中创建新项目时。我遇到错误:

  1. 呈现问题(activity_main

  2. 命令 Aapt2.exe ,退出代码值非零1

  3. ImageView srcCompat错误。

我该怎么办?

1 个答案:

答案 0 :(得分:0)

使用AppComapatImageView代替ImageView

<android.support.v7.widget.AppCompatImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:srcCompat="@drawable/circle_icon" />

将此添加到gradle中。refer this

android {
   defaultConfig {
     vectorDrawables.useSupportLibrary = true
    }
 }