Quindi il mio SDK passa da 15 a 21 e quando chiamo setBackgroundDrawable()
Android Studio mi dice che è deprecato.
Ho pensato di girarci intorno usando:
int sdk = android.os.Build.VERSION.SDK_INT;
if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
layout.setBackgroundDrawable(getResources().getDrawable(R.drawable.img_wstat_tstorm));
} else {
layout.setBackground(getResources().getDrawable(R.drawable.img_wstat_tstorm));
}
Ma poi, ottengo un errore in "setBackground ()".
Quindi, come lo affronteresti?