gpt4 book ai didi

android - getDrawable(int id) 已弃用。如何设置图像?

转载 作者:行者123 更新时间:2023-12-05 00:49:41 31 4
gpt4 key购买 nike

有一个问题! getDrawable() 在 API 22 中已弃用。所以,如果我使用 min API 16 制作应用程序,我该如何设置图像?

我看到我可以使用 getDrawable(int id, theme) ,但是这是在 API 21 中添加的,所以我不能使用它。

我试过 setImageDrawable(ResourcesCompat.getDrawable(getResources(), R.drawable.drawableName, null)) 但这也不起作用。使用 ContextCompat 或 getApplicationContext() 也不起作用。

private ImageView weatherIcon;
weatherIcon=(ImageView)findViewById(R.id.weatherIcon);
if(weatherReportList.size()>0){
DailyWeatherReport report=weatherReportList.get(0);
switch (report.getWeather()){
case DailyWeatherReport.WEATHER_TYPE_CLOUDS:
weatherIcon.setImageDrawable(ResourcesCompat.getDrawable(getResources(), R.drawable.cloudy, null));
weatherIconMini.setImageDrawable(ResourcesCompat.getDrawable(getResources(), R.drawable.cloudy, null));
case DailyWeatherReport.WEATHER_TYPE_RAIN:
weatherIcon.setImageDrawable(ContextCompat.getDrawable(this,R.drawable.rainy));
weatherIconMini.setImageDrawable(ResourcesCompat.getDrawable(getResources(), R.drawable.rainy, null));

default:
weatherIcon.setImageDrawable(ResourcesCompat.getDrawable(getResources(), R.drawable.sunny, null));
weatherIconMini.setImageDrawable(ResourcesCompat.getDrawable(getResources(), R.drawable.sunny, null));


}

这不是该帖子的副本。我已经尝试了那里的所有方法,但都没有奏效。

最佳答案

你可以使用

yourImageView.setImageDrawable(ContextCompat.getDrawable(context, /*your drawable like R.drawable.drawableName*/));

关于android - getDrawable(int id) 已弃用。如何设置图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38525390/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com