How to remove auto padding of FAB button in android?

Shravan Jain

I am using FAB button for profile picture but it is already having some padding. I am using following code for creating FAB button.

<android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="120dp" android:layout_height="120dp" android:layout_margin="@dimen/fab_margin" android:src="@drawable/student" app:layout_anchor="@id/app_bar" app:layout_anchorGravity="bottom|end"/>

How can i remove the padding which is automatically providing by library. I have also attached an screenshot of output. I want to remove this sky blue color and increase the size of src image.

enter image description here

Bawa

just add this in your dimens.xml file

<dimen name="design_fab_image_size" tools:override="true">36dp</dimen>

This might not work for 3rd party libraries.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to remove button padding of setBackgroundTintList()

From Dev

Android Radio Button: Remove Left padding

From Dev

How do you remove the extra inner padding inside a Spinner button in an Android layout?

From Dev

How do you remove the extra inner padding inside a Spinner button in an Android layout?

From Dev

Remove JavaFX button padding?

From Dev

Remove padding bottom for height:auto

From Java

How to remove padding around buttons in Android?

From Dev

How to change android design support library FAB Button border color?

From Dev

Android L FAB Button shadow

From Dev

How do I remove the default padding from a button in Firefox?

From Dev

How to remove extra padding or margin in material design button?

From Dev

How to remove the padding of a button with nested label with JavaFX CSS

From Dev

Android TableLayout remove padding

From Dev

Android CardView remove padding

From Dev

Android TableLayout remove padding

From Dev

Remove text padding in Button view

From Dev

Remove text padding in Button view

From Java

How to remove button shadow (android)

From Dev

How to remove auto statusbar color changed in android

From Dev

how to remove the padding in the page?

From Dev

how to remove the padding in the page?

From Dev

How to remove this padding in Recyclerview?

From Dev

How to adjust android button text at centre without padding?

From Java

Android How to Remove the Inner Padding of a Vector Asset Drawable

From Dev

How to remove internal Image padding (Top, Left and Bottom) of an Android Checkbox

From Dev

How to set or remove android SearchView top and bottom padding?

From Dev

How to properly remove padding (or margin?) around buttons in Android?

From Dev

How to remove internal Image padding (Top, Left and Bottom) of an Android Checkbox

From Dev

Android L - Floating Action Button (FAB)

Related Related

  1. 1

    How to remove button padding of setBackgroundTintList()

  2. 2

    Android Radio Button: Remove Left padding

  3. 3

    How do you remove the extra inner padding inside a Spinner button in an Android layout?

  4. 4

    How do you remove the extra inner padding inside a Spinner button in an Android layout?

  5. 5

    Remove JavaFX button padding?

  6. 6

    Remove padding bottom for height:auto

  7. 7

    How to remove padding around buttons in Android?

  8. 8

    How to change android design support library FAB Button border color?

  9. 9

    Android L FAB Button shadow

  10. 10

    How do I remove the default padding from a button in Firefox?

  11. 11

    How to remove extra padding or margin in material design button?

  12. 12

    How to remove the padding of a button with nested label with JavaFX CSS

  13. 13

    Android TableLayout remove padding

  14. 14

    Android CardView remove padding

  15. 15

    Android TableLayout remove padding

  16. 16

    Remove text padding in Button view

  17. 17

    Remove text padding in Button view

  18. 18

    How to remove button shadow (android)

  19. 19

    How to remove auto statusbar color changed in android

  20. 20

    how to remove the padding in the page?

  21. 21

    how to remove the padding in the page?

  22. 22

    How to remove this padding in Recyclerview?

  23. 23

    How to adjust android button text at centre without padding?

  24. 24

    Android How to Remove the Inner Padding of a Vector Asset Drawable

  25. 25

    How to remove internal Image padding (Top, Left and Bottom) of an Android Checkbox

  26. 26

    How to set or remove android SearchView top and bottom padding?

  27. 27

    How to properly remove padding (or margin?) around buttons in Android?

  28. 28

    How to remove internal Image padding (Top, Left and Bottom) of an Android Checkbox

  29. 29

    Android L - Floating Action Button (FAB)

HotTag

Archive