-3

I can't use ImageView in android studio gradle 4.7

enter image description here

Manohar
  • 22,116
  • 9
  • 108
  • 144

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
  • 2,107
  • 22
  • 43
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 Taamalli
  • 135
  • 1
  • 11