I have a a WebView and a Button above the top-right corner of it my problem is that when I first tap on the button it doesn't work, the 2nd tap (click) works fine.
Its xml is as follows:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="10dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:layout_marginLeft="4dp"
android:background="@drawable/popup3"
>
<WebView
xmlns:ptr="http://schemas.android.com/apk/res-auto"
android:id="@+id/webviewActionView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minHeight="200dp"
android:minWidth="200dp"
android:scrollbars="none" >
</WebView>
</LinearLayout>
<Button
android:id="@+id/popup_closer"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="0dip"
android:layout_marginLeft="0dip"
android:background="@drawable/close_popup"
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:text=" " />
</RelativeLayout>
It looks like the following:

Now when I place the ButtonView before the LinearLayout in the code it works from the First click (tap)
but it looks like this:

