2015-09-14 36 views
-2

我用libGDX和Android Studio製作了一個漂亮的小飛揚鳥克隆。我想把我的ic_launcher.png改成其他默認的android機器人圖標很簡單的東西。我錯了!看起來改變那個文件的內容是最難的事情。現在,當我嘗試運行我的項目時,我收到以下錯誤消息:更改我的ic_launcher.png銷燬Android Studio項目

Information:Gradle tasks [clean, :android:generateDebugSources, :android:generateDebugAndroidTestSources] 
:android:clean 
:core:clean UP-TO-DATE 
:desktop:clean UP-TO-DATE 
:html:clean UP-TO-DATE 
:ios:clean UP-TO-DATE 
:android:preBuild UP-TO-DATE 
:android:preDebugBuild UP-TO-DATE 
:android:checkDebugManifest 
:android:prepareDebugDependencies 
:android:compileDebugAidl 
:android:compileDebugRenderscript 
:android:generateDebugBuildConfig 
:android:generateDebugAssets UP-TO-DATE 
:android:mergeDebugAssets 
:android:generateDebugResValues UP-TO-DATE 
:android:generateDebugResources 
:android:mergeDebugResources 
:android:processDebugManifest 
:android:processDebugResources 
C:\Users\plankton\Desktop\ThePlaneThatCouldntFly\flappyplankton\android\build\intermediates\manifests\full\debug\AndroidManifest.xml 
Error:(13, 23) No resource found that matches the given name (at 'icon' with value '@drawable/ic_launcher.png'). 
Error:Execution failed for task ':android:processDebugResources'. 
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\plankton\AppData\Local\Android\android-sdk\build-tools\20.0.0\aapt.exe'' finished with non-zero exit value 1 
Information:BUILD FAILED 
Information:Total time: 7.13 secs 
Information:2 errors 
Information:0 warnings 
Information:See complete output in console 

似乎無法解決此問題?爲什麼人們在最簡單的事情打破它的地方寫出毫無價值的IDE? Geez我以爲我所要做的就是將我酷炫的圖標複製到蹩腳的默認圖標上,我會在晚上完成,可以去睡覺但不是! Android Studio必須是一堆垃圾。

+0

怎麼了反對票?我沒有寫Anduhroid Studio。 –

回答

1

終於想通了。我必須刪除所有已生成的「生成」目錄,然後刪除項目頂層的.gradle.idea目錄。我也確保drawable導演是在正確的地方,並且ic_laucher.png包含我想要的圖像。然後我重新將項目導入Anduhoird Studio

-1

沒有資源發現在給定的名字相匹配(在「圖標」,值爲 「@繪製/ ic_launcher.png」)

你已經檢查過了兩倍檢查發現巴紐?這是正確的尺寸? Android Studio實際上是否看到該文件?當你開始輸入@drawable時它會給你一個建議嗎?它可能需要幾種不同像素密度的ic_launcher.png格式。

退房http://romannurik.github.io/AndroidAssetStudio/icons-launcher.html#foreground.space.trim=1&foreground.space.pad=0&foreColor=607d8b%2C0&crop=0&backgroundShape=square&backColor=ffffff%2C100&effects=none

+0

是的文件是PNG和正確的大小(我想這將是太多,期望我會得到一個有用的錯誤消息,如果是這樣的話,但我已經檢查了這些明顯的問題)感謝您的回覆 –

+0

右鍵單擊res - > new - > image資產 默認爲ic_launcher.png。您的錯誤可能是因爲您沒有MDPI,HDPI .... XXXHDPI中的ic_launcher.png。 –

+0

試過......沒有修復它 –