对于新的android API 22,getResources().getDrawable()现在已被弃用。现在最好的方法是只使用getDrawable()。

什么改变了?


当前回答

en-api级别14

marker.setIcon(ResourcesCompat.getDrawable(getResources(), R.drawable.miubicacion, null));

其他回答

替换此行:getResources().getDrawable(R.drawable.your_drawable)

使用ResourcesCompat.getDrawable(getResources(),R.draable.your_drawable,null)

EDIT

ResourcesCompat现在也被弃用。但您可以使用此选项:

ContextCompat.getDrawable(this,R.drawable.your_drawable)(这里是上下文)

有关详细信息,请单击以下链接:ContextCompat

试试这个

ContextCompat.getDrawable(getActivity(), R.drawable.drawable_resource_name);

getResources().getDrawable()在API级别22中被弃用。现在我们必须添加主题:

getDrawable(int id,Resources.Theme主题)(在API级别21中添加)

这是一个示例:

myImgView.setImageDrawable(getResources().getDrawable(R.drawable.myimage, getApplicationContext().getTheme()));

以下是如何验证更高版本的示例:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { //>= API 21
     myImgView.setImageDrawable(getResources().getDrawable(R.drawable.myimage, getApplicationContext().getTheme()));
   } else { 
     myImgView.setImageDrawable(getResources().getDrawable(R.drawable.myimage));
}

Build.VERSION_CODES.LOLLIOP现在应更改为BuildVersionCodes.LOLLIPOP即:

if (Build.VERSION.SdkInt >= BuildVersionCodes.Lollipop) {
    this.Control.Background = this.Resources.GetDrawable(Resource.Drawable.AddBorder, Context.Theme);
} else {
    this.Control.Background = this.Resources.GetDrawable(Resource.Drawable.AddBorder);
}

如果您的目标SDK>21(棒棒糖或5.0),请使用

context.getDrawable(R.drawable.your_drawable_name)

参见文档