2017-04-21 45 views
0

我添加了一個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

回答

1

資源名稱不應包含任何大寫字母。將你的drawable重命名爲ic_search(以符合命名標準)。

0

資源名稱不應該大寫字母 您可以改變爲此

search_icon

相關問題