getBarSize(new OnSizeDeterminedListener()) does not update (attachShy)
See original GitHub issueThis only give me one number, when my activity is first launched:
bottomBar.getBarSize(new OnSizeDeterminedListener() {
@Override
public void onSizeReady(int size) {
Log.e("height", String.valueOf(size));
float translationY = Math.min(0, floatingActionButton.getTranslationY() - size);
floatingActionButton.setTranslationY(translationY);
}
});
Issue Analytics
- State:
- Created 7 years ago
- Comments:20 (11 by maintainers)
Top Results From Across the Web
13.2 EM Fleet migrate_listener Does Not Update the ...
The migrate job output shows it fails to start the migrated listener because of incorrect ORACLE_HOME in the listener.ora file. The job output ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@roughike Then I have to adjust proper translation for FAB in the behavior.
Is there any Update on this, the fab still goes below the BottomBar. If I get LayoutParams and set the BottomMargin manually then the Same Margin is used as the SnackBar Margin and everything looks ugly.