Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanted to use view.setBackgroundDrawable(Drawable) but this method is deprecated. It is replaced with .setBackground(Drawable). But my minimum of API 8 can't handle that. It tells me to set the minimum to API 16.

Is there a way to use a different method, based on the API of the device?

Something like

if(API<16)
{
  view.setBackgroundDrawable(Drawable)
}
else
{
  view.setBackground(Drawable)
}

Or do I really have to change the minimum API to do this?

share|improve this question
possible duplicate of setBackground vs setBackgroundDrawable (Android) – kabuko May 16 at 21:05

3 Answers

up vote 7 down vote accepted

setBackgroundDrawable is deprecated but it still works so you could just use it. But if you want to be completely correct you should use something like this

int sdk = android.os.Build.VERSION.SDK_INT;
if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
    setBackgroundDrawable()
} else {
    setBackground();
}

For this to work you need to set buildTarget api 16 and min build to 7 or something similar.

share|improve this answer
1  
In this code...the warning will still be shown, you can use suppress warnings to remove it! – Antrromet Nov 5 '12 at 9:43
Actually I need both of these: @SuppressLint("NewApi") @SuppressWarnings("deprecation") – Niels Nov 5 '12 at 9:48
Yea, I forgot to mention the Lint warnings – Antrromet Nov 5 '12 at 9:51

You can use different methods based on the API versions.

For e.g:

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.FROYO) {
        //Methods for version <8 (FROYO)
} else {
        // Methods for version >=8
}

Here set your targetSDkversion to any higher versions(for e.g 16 here) and set your minsdkversion to lower versions ( API 7).

share|improve this answer

Something like this:

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN){
   view.setBackgroundDrawable(Drawable)
} else {
   view.setBackground(Drawable)
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.