android-floating-action-button icon indicating copy to clipboard operation
android-floating-action-button copied to clipboard

view behind afb is active

Open parthanjaria opened this issue 8 years ago • 1 comments

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

parthanjaria avatar Apr 04 '16 05:04 parthanjaria

I had the same issue, so I made the view transparent by adding this: android:background="#00000000"

dejiapps avatar Dec 19 '16 15:12 dejiapps