天天看點

UnsupportedOperationException: Can't convert to color (?attr/colorPrimaryn )

版權聲明:本文為部落客原創文章,未經部落客允許不得轉載。 https://blog.csdn.net/qingfeng812/article/details/51601500

報錯代碼:

shape_from_edit.xml      

問題描述:5.0以上沒有報錯,以下的機型4.1報錯

<solid
    android:color="?attr/colorPrimary" />  <!- 不推薦使用 ->      

修正(相容5.0以下機型):

<solid
    android:background="?attr/colorPrimary" />  <!- 推薦使用 ->      

控件調用:

search_edit_frame.setBackgroundResource(R.drawable.shape_from_edit);      

繼續閱讀