渲染问题和图像视图



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

  1. 渲染问题(activity_main

  2. 命令 aapt2.exe 带有非零退出代码值1

  3. ImageView srcCompat错误。

我该怎么办?

使用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
    }
 }

相关内容

  • 没有找到相关文章

最新更新