I have a FrameLayout that involves the use of Panel from http://code.google.com/p/android-misc-widgets/ and http://w2davids.wordpress.com/android-slidingdrawer-top-down-style/
The problem I face is that my touch events get intercepted by the views under the panel.
For example, I have button X, I slide down the panel which overlays button X and touch on the panel, the underlying button X gets clicked even though it is not visible. Is there anyway to prevent this?
UPDATE
I discovered the problem. In my XML file, the empty TableLayout is causing me the problem. If I put in table rows programatically, the touch event does not get passed through. If it is an empty table, clicking on the ScrollView background will cause the touch event to pass through the underlying view. How can I prevent this problem?
<FrameLayout
xmlns:panel="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<android.Panel
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/topPanel"
android:paddingBottom="20dip"
panel:position="top"
panel:animationDuration="1000"
panel:linearFlying="true"
panel:openedHandle="@drawable/top_switcher_expanded_background"
panel:closedHandle="@drawable/top_switcher_collapsed_background">
<Button
android:id="@id/panelHandle"
android:layout_width="fill_parent"
android:layout_height="33dip" />
<LinearLayout
android:id="@id/panelContent"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ScrollView android:id="@+id/ScrollView01" android:layout_width="fill_parent" android:layout_height="240dip"
android:background="@drawable/bg">
<TableLayout android:id="@+id/table" android:layout_width="fill_parent" android:layout_height="fill_parent">
</TableLayout>
</ScrollView>
</android.Panel>
</LinearLayout>
</FrameLayout>