Roberto Leinardi
Roberto Leinardi
Hi @naco-siren, I started investigating this issue and it seems to happen only with the support library version 28.0.0-alpha3 (27.1.1 still works fine). Until I find a better solution my...
I have reported the bug in the issuetracker of the support libraries. Please consider starring the issue for visibility (and if you want to get updates): https://issuetracker.google.com/issues/111433526
Hi @naco-siren, if you want to keep the animation you can try this other workaround: ``` /** * Workaround class for https://issuetracker.google.com/issues/111316656 is released. * If you call [showWithWorkaround] manually...
Google release v28 of the support libraries without fixing this issue. Unbelievable. I implemented a workaround, it will be merged to the next release of this library. EDIT The new...
Are you getting any of these errors? ```Java } catch (NoSuchMethodException e) { Log.e(TAG, "Method setImageMatrixScale not found", e); } catch (IllegalAccessException e) { Log.e(TAG, "IllegalAccessException", e); } catch (InvocationTargetException...
The rule is already provided by the library and is working on release builds afaik: https://github.com/leinardi/FloatingActionButtonSpeedDial/blob/9c2f5ed71c861536f38fcc98e1d8e3110c2b252f/library/consumer-proguard-rules.pro#L27 Are you using AndroidX and the `enableJetifier` option? If yes probably you have to...
Mmm this is strange, the rule should be already provided with the library. Anyone else is experiencing the same issue?
Hi @adendiamond, thanks for the suggestion, I will keep it in mind. Meanwhile it is possible to do it programmatically like this (the `fabWithLabelView` is returned by the `addActionItem()`: ```java...
This is a bug of the `FloatingActionButton` from the Design library. I have open an issue, feel free to star it: https://issuetracker.google.com/issues/77303906 Related to #11
Yep, just try to change the size of the FAB programmatically (define it mini in XML and than set it to normal in Java/Kotlin: ``` // fab has app:fabSize attribute...