作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个问题! 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/
我是一名优秀的程序员,十分优秀!