-1

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

  1. 渲染问题 ( activity_main)

  2. 具有非零退出代码值 1 的命令Aapt2.exe

  3. ImageView srcCompat错误。

我应该怎么办?

4

1 回答 1

0

使用 AppComapatImageView 代替 ImageView

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

在gradle中添加这个。参考这个

android {
   defaultConfig {
     vectorDrawables.useSupportLibrary = true
    }
 }

于 2019-02-25T04:53:44.833 回答