getResources().getDrawable()
现在不推荐使用新的android API 22 。现在最好的方法是只使用getDrawable()
。
发生了什么变化?
getResources().getDrawable()
现在不推荐使用新的android API 22 。现在最好的方法是只使用getDrawable()
。
发生了什么变化?
Answers:
您有一些选择来以正确的方式(以及将来的证明)来处理这种弃用,这取决于您要加载的绘图类型:
A)具有主题属性的可绘制对象
ContextCompat.getDrawable(getActivity(), R.drawable.name);
您将按照Activity主题的指示获得样式化的Drawable。这可能就是您所需要的。
B)没有主题属性的绘画
ResourcesCompat.getDrawable(getResources(), R.drawable.name, null);
您将以旧方式获得未样式化的可绘制对象。请注意:ResourcesCompat.getDrawable()
是不是过时!
具有其他主题的主题属性的EXTRA)可绘制对象
ResourcesCompat.getDrawable(getResources(), R.drawable.name, anotherTheme);
您应该改用支持库中的以下代码:
ContextCompat.getDrawable(context, R.drawable.***)
使用此方法等效于调用:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
return resources.getDrawable(id, context.getTheme());
} else {
return resources.getDrawable(id);
}
从API 21开始,您应该使用getDrawable(int, Theme)
方法而不是getDrawable(int)
,因为它允许您针对给定的屏幕密度/主题获取与特定资源ID关联的可绘制对象。调用不推荐使用的getDrawable(int)
方法等同于调用getDrawable(int, null)
。
getDrawable (int id)
的是Context
类的方法。这和getResources().getDrawable(id, getTheme());
与新API,也使用新API。
getDrawable(int, Resources.Theme)
。
替换此行:
getResources().getDrawable(R.drawable.your_drawable)
与 ResourcesCompat.getDrawable(getResources(), R.drawable.your_drawable, null)
编辑
ResourcesCompat
现在也已弃用。但是您可以使用以下命令:
ContextCompat.getDrawable(this, R.drawable.your_drawable)
(这里this
是上下文)
有关更多详细信息,请单击此链接:ContextCompat
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.LOLLIPOP is API 21
,所以应该不是这个是if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP_MR1)
和if (Build.VERSION.SDK_INT > Build.VERSION_CODES.LOLLIPOP)
?没关系。从下面开始:“该方法已添加到API 21中,但直到API 22才被弃用。:)”
您可以使用
ContextCompat.getDrawable(getApplicationContext(),R.drawable.example);
那对我有用
这只是我如何解决数组加载listView问题的示例,希望对您有所帮助。
mItems = new ArrayList<ListViewItem>();
// Resources resources = getResources();
// mItems.add(new ListViewItem(resources.getDrawable(R.drawable.az_lgo), getString(R.string.st_az), getString(R.string.all_nums)));
// mItems.add(new ListViewItem(resources.getDrawable(R.drawable.ca_lgo), getString(R.string.st_ca), getString(R.string.all_nums)));
// mItems.add(new ListViewItem(resources.getDrawable(R.drawable.co_lgo), getString(R.string.st_co), getString(R.string.all_nums)));
mItems.add(new ListViewItem(ResourcesCompat.getDrawable(getResources(), R.drawable.az_lgo, null), getString(R.string.st_az), getString(R.string.all_nums)));
mItems.add(new ListViewItem(ResourcesCompat.getDrawable(getResources(), R.drawable.ca_lgo, null), getString(R.string.st_ca), getString(R.string.all_nums)));
mItems.add(new ListViewItem(ResourcesCompat.getDrawable(getResources(), R.drawable.co_lgo, null), getString(R.string.st_co), getString(R.string.all_nums)));
尝试这个:
public static List<ProductActivity> getCatalog(Resources res){
if(catalog == null) {
catalog.add(new Product("Dead or Alive", res
.getDrawable(R.drawable.product_salmon),
"Dead or Alive by Tom Clancy with Grant Blackwood", 29.99));
catalog.add(new Product("Switch", res
.getDrawable(R.drawable.switchbook),
"Switch by Chip Heath and Dan Heath", 24.99));
catalog.add(new Product("Watchmen", res
.getDrawable(R.drawable.watchmen),
"Watchmen by Alan Moore and Dave Gibbons", 14.99));
}
}
API级别22中不推荐使用getDrawable(int drawable)。有关参考,请参见此链接。
现在要解决此问题,我们必须传递一个新的构造函数以及id,如:-
getDrawable(int id, Resources.Theme theme)
对于解决方案,请执行以下操作:-
在Java中:
ContextCompat.getDrawable(getActivity(), R.drawable.name);
要么
imgProfile.setImageDrawable(getResources().getDrawable(R.drawable.img_prof, getApplicationContext().getTheme()));
在科特林:-
rel_week.background=ContextCompat.getDrawable(this.requireContext(), R.color.colorWhite)
要么
rel_day.background=resources.getDrawable(R.drawable.ic_home, context?.theme)
希望这会对您有所帮助。
api 14级
marker.setIcon(ResourcesCompat.getDrawable(getResources(), R.drawable.miubicacion, null));
现在您需要像这样实现
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { //>= API 21
//
} else {
//
}
只需一行代码就足够了,一切将由ContextCompat.getDrawable处理
ContextCompat.getDrawable(this, R.drawable.your_drawable_file)
在Kotlin中,您可以使用扩展程序
fun Context.getMyDrawable(id : Int) : Drawable?{
return ContextCompat.getDrawable(this, id)
}
然后使用像
context.getMyDrawable(R.drawable.my_icon)
Build.VERSION_CODES.LOLLIPOP现在应更改为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);
}
BuildVersionCodes
Xamarin特有的课程吗?
getDrawable (int id)
该类的方法Resources
已被弃用。现在,您应该使用getDrawable (int id, Resources.Theme theme)
带有新主题参数的方法。