天天看点

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);      

继续阅读