web-dev-qa-db-fra.com

Définir dynamiquement l'arrière-plan de la disposition linéaire

Je voulais définir l'arrière-plan de mise en page linéaire de manière dynamique de la manière suivante:

  1. Récupérez l'image de l'URL Web via l'analyse XML, puis stockez cette image sur une carte SD.

  2. Maintenant, l'image enregistrée dans la carte SD.

  3. 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?

16
Kanika

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?

46
Deimos

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.

4
Hiren Patel

Un moyen plus simple:

BitmapDrawable d = new BitmapDrawable("/sdcard/data/image.jpg");
linearLayout.setBackgroundDrawable(d);
3
kazufukurou

Les API sont obsolètes, vous pouvez utiliser le code ci-dessous

BitmapDrawable background = new BitmapDrawable(getResources(), bitmapImage);
linearLayout.setBackground(background);
3

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);
0
McMillanMe

Essayez d'utiliser ceci:

Bitmap bmpOriginal = BitmapFactory.decodeResource(getResources(), R.drawable.img);
BitmapDrawable bmpBackground = new BitmapDrawable(getResources(), bmpOriginal)
0