我添加了一個ImageButton的在我的應用程序,但是當我運行我的應用程序是顯示錯誤
像Android-「錯誤:(44,22)找不到與給定名稱匹配的資源(在'src'中,值'@ drawable/searchIcon')。」
Error:(44, 22) No resource found that matches the given name (at 'src' with value '@drawable/searchIcon').
這裏是我的XML代碼
<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" />
我在加入searchIcon圖像drawable文件夾eventhough我得到錯誤。
ThankYou