setBackground报错 不兼容4.1以下版本

来源:互联网 发布:淘宝可以用黑体吗 编辑:程序博客网 时间:2024/05/18 02:37

android 4.1.1(API16以下不兼容setBackground)

android 2.3  setBackground不兼容setBackground

解决方法

if (Build.VERSION.SDK_INT >= 16) {ll_main.setBackground(getResources().getDrawable(R.drawable.bg_mine));} else {ll_main.setBackgroundDrawable(getResources().getDrawable(R.drawable.bg_mine));}

0 0
原创粉丝点击