android-floating-action-button
android-floating-action-button copied to clipboard
view behind afb is active
This is my FAB layout :
<com.getbase.floatingactionbutton.FloatingActionsMenu
android:id="@+id/fab_co_applicant"
android:layout_width="match_parent"
android:layout_height="match_parent"
fab:fab_addButtonColorNormal="#da251c"
fab:fab_addButtonPlusIconColor="#ffffff"
fab:fab_labelStyle="@style/menu_labels_style"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
/ >
i am adding the menu buttons dynamically via code like this :
fab_co_applicant.addButton(co_applicant);
now when the menu is expanded there is a view behind the fab which is active. why is that so? and how to stop that? Please help, its really urgent
I had the same issue, so I made the view transparent by adding this: android:background="#00000000"