Fragment over another fragment issue

Set clickable property on the second fragment’s view to true. The view will catch the event so that it will not be passed to the main fragment. So if the second fragment’s view is a layout, this would be the code:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true" />

Leave a Comment