Je voulais définir l'arrière-plan de mise en page linéaire de manière dynamique de la manière suivante:
Récupérez l'image de l'URL Web via l'analyse XML, puis stockez cette image sur une carte SD.
Maintenant, l'image enregistrée dans la carte SD.
Définissez cette image comme arrière-plan d'une mise en page linéaire dans l'application.
Maintenant je suis coincé dans la troisième étape. Quelqu'un peut-il aider?
Utilisez ceci:
Bitmap bmImg = BitmapFactory.decodeStream(is);
BitmapDrawable background = new BitmapDrawable(bmImg);
linearLayout.setBackgroundDrawable(background);
Vérifiez également ceci: Comment convertir une image bitmap en Drawable dans Android?
J'ai fait comme ça:
private RelativeLayout relativeLayout;
onCreate :
relativeLayout= (RelativeLayout)findViewById(R.id.relativeLayout);
new LoadBackground("http://www.tmonews.com/wp-content/uploads/2012/10/androidfigure.jpg",
"androidfigure").execute();
AsyncTask to charger image dans fond :
private class LoadBackground extends AsyncTask<String, Void, Drawable> {
private String imageUrl , imageName;
public LoadBackground(String url, String file_name) {
this.imageUrl = url;
this.imageName = file_name;
}
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected Drawable doInBackground(String... urls) {
try {
InputStream is = (InputStream) this.fetch(this.imageUrl);
Drawable d = Drawable.createFromStream(is, this.imageName);
return d;
} catch (MalformedURLException e) {
e.printStackTrace();
return null;
} catch (IOException e) {
e.printStackTrace();
return null;
}
}
private Object fetch(String address) throws MalformedURLException,IOException {
URL url = new URL(address);
Object content = url.getContent();
return content;
}
@Override
protected void onPostExecute(Drawable result) {
super.onPostExecute(result);
relativeLayout.setBackgroundDrawable(result);
}
}
J'espère que ceci vous aidera.
Un moyen plus simple:
BitmapDrawable d = new BitmapDrawable("/sdcard/data/image.jpg");
linearLayout.setBackgroundDrawable(d);
Les API sont obsolètes, vous pouvez utiliser le code ci-dessous
BitmapDrawable background = new BitmapDrawable(getResources(), bitmapImage);
linearLayout.setBackground(background);
Utilisez la réponse de @ Deimos, mais comme ceci puisque certaines méthodes sont obsolètes maintenant.
Bitmap bmImg = BitmapFactory.decodeStream(is);
BitmapDrawable background = new BitmapDrawable(context.getResources(), bmImg);
linearLayout.setBackground(background);
Essayez d'utiliser ceci:
Bitmap bmpOriginal = BitmapFactory.decodeResource(getResources(), R.drawable.img);
BitmapDrawable bmpBackground = new BitmapDrawable(getResources(), bmpOriginal)