Android Tutorial – Creando un WebView desde un Intent
1.- Creamos un proyecto llamado WebViewIntent 2.- Dentro del proyecto ubicamos al archivo main.xml dentro de la siguiente ruta /res/layout/ 3.- Agregamos un botón a nuestro layout como se muestra enseguida: <Button android:layout_width="match_parent" android:id="@+id/btnweb" android:text="Browser" android:layout_height="wrap_content"> </Button> 4.- Ahora dentro del archivo MainActivity.java en el método onCreate() creamos un objeto botón que sincronizaremos con el botón creado en nuestro layout mediante el método findViewById() Button btnwebview = (Button) findViewById(R.id.btnweb);