Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/02/2012, 09:03
cucuru
 
Fecha de Ingreso: marzo-2009
Mensajes: 509
Antigüedad: 15 años, 1 mes
Puntos: 17
centrar webView

No consigo centrar el contenido de mi webView en el layout.
El Activity sólo contiene un webView:

Código:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
   	android:background="@color/white"
    android:gravity = "center"
    
    >
 
    
    	<WebView       
      		android:id="@+id/webLogin"
			android:textColor="#000000"
    		android:layout_width="fill_parent" 	
    		android:layout_height="fill_parent" 
    		android:layout_marginLeft="10dip" 
    		android:layout_marginRight="10dip" 
      	></WebView> 
      
    
</LinearLayout>
Gracias.

Saludos