Saturday, January 15, 2011

Displaying Google Charts on Android


import java.net.URL;
import android.graphics.Bitmap;
import android.widget.ImageView;

URL img = new URL("CHART URL");
ImageView imgViewer = new ImageView(this);
imgViewer.setImageBitmap(Bitmap.decodeStream(img.openStream());

No comments:

Post a Comment