I added a imagebutton in my application but when i run my app it show the error
like
Error:(44, 22) No resource found that matches the given name (at 'src' with value '@drawable/searchIcon').
Here is my Xml code
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/searchIcon"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="10dp"
android:layout_marginRight="5dp"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toRightOf="@+id/editText"
android:layout_marginLeft="10dp" />
I added the searchIcon image in the drawable folder eventhough i getting the error.
ThankYou