Código:
En el archivo java hago:<?xml version="1.0" encoding="utf-8"?>
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/read"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
Código:
Pero el zoom no me aparece por ningún sitio. ¿qué estoy haciendo mal? setContentView(R.layout.read_website);
WebView read = (WebView)findViewById(R.id.read);
WebSettings webSettings = read.getSettings();
read.getSettings().setBuiltInZoomControls(true);
read.loadUrl("http://www.google.es");
Gracias!


