Image from WebView
        Posted  
        
            by 
                kostas_menu
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by kostas_menu
        
        
        
        Published on 2010-12-26T15:40:11Z
        Indexed on 
            2010/12/26
            15:54 UTC
        
        
        Read the original article
        Hit count: 187
        
android
hi!i m getting a photo from the web,but i see it very large..how could i see it with zoom out?this is my code for webView:
public class gavros extends Activity {
    WebView browser;
        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.efimerides);
            browser =(WebView)findViewById(R.id.webview);
            browser.loadUrl("http://resources.sport-fm.gr/sportfm/newspapers/10/12/24/gavros.jpg");
        }}
        © Stack Overflow or respective owner