Assigned
Status Update
Comments
ma...@marcardar.com <ma...@marcardar.com> #2
Thank you for reporting this issue. For us to further investigate this issue, please provide the following additional information:
Please provide sample project or apk to reproduce the issue. Also mention the steps to be followed for reproducing the issue with the given sample project or apk.
Expected output
What is the expected output?
Current output
What is the current output?
ma...@marcardar.com <ma...@marcardar.com> #3
How can you possibly need more information, i just told you the exact part of code causing the issue, and the code changes required to fix it!
Please read the description.
Expected output:
What is the expected output?
See attached "expected.webm" video in OP
Current output
What is the current output?
See attached "actual.webm" video in OP
Please read the description.
Expected output:
What is the expected output?
See attached "expected.webm" video in OP
Current output
What is the current output?
See attached "actual.webm" video in OP
je...@google.com <je...@google.com>
sh...@google.com <sh...@google.com> #4
1. Import attached project
2. Install and run on Android 5 (Lollipop) or above
3. Click FAB and see it fall below/behind the navigation bar once the Snackbar disappear
2. Install and run on Android 5 (Lollipop) or above
3. Click FAB and see it fall below/behind the navigation bar once the Snackbar disappear
ma...@marcardar.com <ma...@marcardar.com> #5
Could you please check the attached project as we couldn't extract the files from it.
sh...@google.com <sh...@google.com> #6
It's a RAR archive, there's no issue with it.
However you have problems extracting such, here's the same content as a ZIP archive.
However you have problems extracting such, here's the same content as a ZIP archive.
Description
Top level: horizontal linearlayout (match_parent width/height, weightSum = 1)
Child CoordinatorLayout (weight 1, width 0 - as is standard practice)
As well as an appbarlayout, the coordinator layout has a framelayout child (this is necessary) which in turn has a recyclerview child. The recyclerview items are simple textviews using layout_width="match_parent".
However, for some reason, the text views are being laid out as if they have layout_width="wrap_content"
There are two ways to workaround this:
1. Change the coordinator layout_width = "0dp"
or
2. remove the app:layout_behavior="@string/appbar_scrolling_view_behavior" from the FrameLayout child of coordinator_layout
This repo demonstrates the problem: