I am trying to set a background image from URL to a linear layout with bitmap but the method BackgroundDrawable()
is deprecated and i cannot find any alternative for it.
private LinearLayout linearLayout;
linearLayout = (LinearLayout) findViewById(R.id.layout);
Drawable drawableBitmap = new BitmapDrawable(getApplicationContext().getResources(), getBitmapFromURL(url));
linearLayout.setBackgroundDrawable(drawableBitmap);