Android Studio出現(xiàn) finished with non-zero exit value 1

開發(fā)過程中,經(jīng)常會引用一些自定義控件,很容易出現(xiàn):

com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException:
Process 'command '/android/sdk/build-tools/23.0.3/aapt''
finished with non-zero exit value 1
Error:(157) Attribute "height" has already been defined
Error:(157) Attribute "background" has already been defined

然后我們就要找到資源被引用的地址,把format="xxx"去掉。
舉例:

<declare-styleable name="wepay_input">
<attr name="hint" format="string" />
<attr name="keyText" format="string" />
<attr name="background" format="reference" />   
<attr name="height" format="dimension" />
<attr name="enable" format="boolean" />  
</declare-styleable>

<declare-styleable name="input_type">
<attr name="text" format="string" />
<attr name="leftText" format="string" />
<attr name="background" format="reference" />   
<attr name="height" format="dimension" />
</declare-styleable>

這種情況就會出現(xiàn)多個自定義類的attribute 的名字重復的問題,而且有時候也會跟V4或者V7包中的attribute的名字沖突,所以我們一般要修改下面的樣子:

<declare-styleable name="wepay_input">
<attr name="hint" format="string" />
<attr name="keyText" format="string" />
<attr name="background" format="reference" />   
<attr name="height" format="dimension" />
<attr name="enable" format="boolean" />  
</declare-styleable>

<declare-styleable name="input_type">
<attr name="text" format="string" />
<attr name="leftText" format="string" />
<attr name="background" />  
<attr name="height" />
</declare-styleable>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 178,996評論 25 709
  • Correctness AdapterViewChildren Summary: AdapterViews can...
    MarcusMa閱讀 9,051評論 0 6
  • afinalAfinal是一個android的ioc,orm框架 https://github.com/yangf...
    passiontim閱讀 15,861評論 2 45
  • 秋風賦 三鎖寒風悲莫涼,冬未至,深秋院里黃葉凋,花落人漸瘦,欲飲濁酒忘憂心,何人繁傷為癡怨。 撫欄望江南,瀘州葦草...
    秋音南客閱讀 1,496評論 0 3
  • "wifi密碼多少啊" "你生日" "哦"(暗爽) ****? ********? "怎么不對啊" "不可能,肯定...
    102222閱讀 211評論 0 0

友情鏈接更多精彩內(nèi)容