Android: Alternative for context.getDrawable()

非 Y 不嫁゛ 提交于 2019-12-11 16:34:05

问题


I have used context.getDrawable() like this in my project:

Drawable greenProgressbar = context.getDrawable(R.drawable.custom_progressbargreen);

But Eclipse is giving me an error that it needs a Minimum API level of 21. This would mean after a quick google search my APP will only be usable on Android 5.0. Since not all devices are using this version of android I would like to have an alternative for context.getDrawable().


回答1:


The previously accepted method has been deprecated, according to the SDK 22 documentation:

Prior to android.os.Build.VERSION_CODES#JELLY_BEAN, this function would not correctly retrieve the final configuration density when the resource ID passed here is an alias to another Drawable resource. This means that if the density configuration of the alias resource is different than the actual resource, the density of the returned Drawable would be incorrect, resulting in bad scaling.

As pointed out in this answer better solution would be to use ContextCompat: ContextCompat.getDrawable(context, R.drawable.***)




回答2:


Try adding a getResources() after the context, so this:

Drawable greenProgressbar = context.getResources().getDrawable(R.drawable.custom_progressbargreen);

should work.




回答3:


I had a same situation which I wanted to reference getDrawable() method which is now deprecated.

what I used,

myButton.setImageDrawable(ContextCompat.getDrawable(getActivity(), R.drawable.ic_btn_off));

Hope this will help you




回答4:


I had a similar problem before. Have you tried to do it like this?

Drawable greenProgressbar = context.getResources().getDrawable(R.drawable.custom_progressbargreen);



回答5:


Try this:

AppCompatResources.getDrawable(context, R.drawable.*)



回答6:


You should use " getDrawable(id, this.getTheme()) ". This method is not deprecated till now.

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    view.setBackground(getResources().getDrawable(R.drawable.radioline,this.getTheme()));
} else {
   view.setBackground(getResources().getDrawable(R.drawable.radioline));
}



回答7:


I agree using ContextCompact.getDrawable(Context context, int resID). It worked for me and my app targets API 19.



来源:https://stackoverflow.com/questions/55182472/what-is-the-alternative-getdrawable-for-api-16-or-how-to-use-it

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!