I want to set this progressbar in the center of Web view:
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity = "center_vertical|center_horizontal">
<WebView
android:id="@+id/webView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</WebView>
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal" />
</FrameLayout>
//this works fine for me