Call requires API level 16 (current min is 14)
问题 I have this line in my code: linearLayout.setBackground(drawable); setBackground() shows the following error: Call requires API level 16 (current min is 14) What does this mean? Can I raise my API level? What does a higher/lower API level mean? Does it limit the amount of devices my app can be used on if the API level is higher? 回答1: What does this mean? It means that the setBackground(Drawable) method was added in API Level 16, and older devices do not have it. However, your app's