-3

I can't use ImageView in android studio gradle 4.7

enter image description here

Manohar
  • 19,149
  • 8
  • 90
  • 129

2 Answers2

0
<android.support.v7.widget.AppCompatImageView
            android:id="@+id/image_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:srcCompat="@android:drawable/btn_minus" />

Take a look at the documentation, check this article.

Soon Santos
  • 1,973
  • 17
  • 36
0

make Image view like that :

   <ImageView
    android:layout_width="wrap_content"
    android:layout_height="match_parent" 
    android:id="@+id/image_view"
    android:src="@mipmap/ic_launcher"
    />
tarek taamali
  • 136
  • 1
  • 9