in below code i used a webview, but when i set visibility to invisible or gone, it dose not work and always is visible, why?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="fill_parent" >
<GridView
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginBottom="160dp"
android:layoutAnimation="@anim/layout_item_fade_in"
android:numColumns="3" >
</GridView>
<WebView
android:id="@+id/webView1"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>