Android 过时方法总结

489 阅读1分钟

##'setBackgroundDrawable(android.graphics.drawable.Drawable)' is deprecated 该方法在 API 16(Android 4.1) 版本之后废弃 替代方法: 1.setBackgroundResource 2.setBackground

setBackgroundResource方法在内部还是调用的setBackground方法,而setBackground内部调用的还是setBackgroundDrawable方法

eg:

textView.setBackgroundResource(R.drawable.ic_luncher);   
textView.setBackground(ContextCompat.getDrawable(this, R.drawable.ic_luncher));

##'getColor(int)' is deprecated 该方法在 API 23(Android 6.0) 版本之后废弃 替代方法参考: getColor(int id)在API23时过时

##'getColorStateList(int)' is deprecated 替换方法:

ContextCompat.getColorStateList(context,ResourceId);

##'android.app.ProgressDialog' is deprecated