gpt4 book ai didi

java - 如何使用setBackgroundDrawable和setBackground?

转载 作者:行者123 更新时间:2023-12-01 12:26:35 24 4
gpt4 key购买 nike

(列表的 getView 内)我动态创建 StateListDrawable 并在 setBackgroundDrawable() 中使用它:

convertView.setBackgroundDrawable(stateListDrawable);

但这已被贬低!如果我使用这个:

convertView.setBackground(stateListDrawable);

我的应用程序崩溃了。(convertView是RelativeLayout)convertView.setBackgroundResource也发生同样的崩溃你能告诉我应该使用什么吗?

最佳答案

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
setBackground();
} else {
setBackgroundDrawable();
}

关于java - 如何使用setBackgroundDrawable和setBackground?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26286745/

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