.getDrawable()
没有与我合作,我也不知道为什么我尝试了许多方法而没有像Android getDrawable() Deprecated / How To use Android getDrawable()那样的结果
该应用运行时没有错误,但.getDrawable()
无法正常运行。它被划掉了。我尝试使用getDrawable(id, Theme theme)
。我替换了主题广告中的Null
也没有工作。
答案 0 :(得分:0)
尝试这样的事情:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
img.setImageDrawable(getResources().getDrawable(R.drawable.henedi, this.getTheme()));
} else {
img.setImageDrawable(getResources().getDrawable(R.drawable.henedi));
}
}