Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> android常犯錯誤記錄,android犯錯誤記錄

android常犯錯誤記錄,android犯錯誤記錄

編輯:關於android開發

android常犯錯誤記錄,android犯錯誤記錄


Error:Error: Found item Attr/border_width more than one time

這個容易,屬性相同了,按照提示查詢一下找出來刪了就行了,注意大小寫很容易忽略

 

Error:Execution failed for task ':app:processDebugResources'.

> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'D:\sdk\build-tools\22.0.1\aapt.exe'' finished with non-zero exit value 1   這個錯誤是你在style中定義了屬性
<style name="name">
<item name="actionSheetBackground">@mipmap/bg</item>
</style>
而忽略了在atts中聲明類型
<declare-styleable name="ActionSheet">
<attr name="actionSheetBackground" format="color|reference" />
</declare-styleable>

至於引用則

protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.xml);
setTheme(R.style.name);
}

資源錯誤

很多說是v7包沖突,23以下的做法是刪了兼容包,這個的確可以,不做不好
然後說23版本修復了,於是改成23版本,然而還是有這個錯誤
後來發現是因為有color屬性導致的
把帶有color屬性的刪了或改了就ok了


  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved