I can't use ImageView
in android studio gradle 4.7
Asked
Active
Viewed 79 times
-3

Manohar
- 22,116
- 9
- 108
- 144

Behnam Zadpoor
- 1
- 1
-
Check [this](https://stackoverflow.com/questions/18370599/android-studio-auto-complete-and-other-features-not-working) – Gabriel Moretti Oct 05 '18 at 00:33
2 Answers
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