如何使用txtV1.setBackground(getResources()。getDrawable(R.drawable.bcgrtxt));`在旧设备中?

时间:2014-03-30 11:07:30

标签: android textview setbackground

如何使用

txtV1.setBackground(getResources().getDrawable(R.drawable.bcgrtxt));

在旧设备中?

2 个答案:

答案 0 :(得分:1)

自API级别16开始,

View.setBackground已取代View.setBackgroundDrawable

答案 1 :(得分:0)

.setBackground已添加到 API级别16

中 在 API级别1

中添加了

.setBackgroundResource

因此您可以使用.setBackgroundResource代替.setBackground