setBackgroundDrawable() deprecated

前端 未结 11 1658
长发绾君心
长发绾君心 2020-12-03 00:18

So my sdk goes from 15 to 21 and when I call setBackgroundDrawable(), Android Studio tells me that it\'s deprecated.

I thought of going around it using:

11条回答
  •  情书的邮戳
    2020-12-03 01:08

    Correct as of 15th August 2018

    Use the support libraries

    Drawable drawable = ResourcesCompat.getDrawable(getResources(), drawableRes, null);
    ViewCompat.setBackground(layout, drawable);
    

提交回复
热议问题