Well, the best I can come up with is make a webview. Use this code. First here is the java.
package com.stackoverflow.images.webview;
import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;
import android.content.*;
import android.webkit.*;
public class Site extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.image);
WebView webView = (WebView)
findViewById(R.id.webview);
webView.loadUrl("http://examplesite.com/yourimage");
}
}
Now here is the XML. Try only to change the package up above in the JAVA and the url. Make sure everything is correct with JAVA up above like the onCreate layout
<?xml version="1.0" encoding="utf-8"?>
<WebView
android:id="@+id/webview"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
</WebView>