当我在Android中创建新项目时。我遇到错误:
呈现问题(activity_main
)
命令 Aapt2.exe ,退出代码值非零1
ImageView srcCompat
错误。
我该怎么办?
答案 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
}
}