Fixed
Status Update
Comments
ka...@gmail.com <ka...@gmail.com> #2
I suspect that this is a return of the issue described at https://issuetracker.google.com/issues/129591245
The issue appeared fixed for a few days from Tue May 21, but it appears to be back again.
The issue appeared fixed for a few days from Tue May 21, but it appears to be back again.
ic...@google.com <ic...@google.com> #3
Thanks for reporting this issue. I've been able to replicate it and have reported it to the engineering team. At the moment there are no known workarounds for the developer using the API.
ni...@google.com <ni...@google.com> #4
Any update on this? None of the tasks I created through the app are appearing on my Google Calendar.
Description
Material Design Components version: 1.1.0-alpha07
Until [2.0.0-beta2] multiline TextInputLayout expanded because of overflow text or hitting next line. However, in [2.0.0-beta2] it doesn't - it's height stays the same.
I'm using TextInputLayout with android:layout_height="wrap_content" constrained to top, start and end of parent, it has nested TextInputEditText with android:layout_height="wrap_content" and android:inputType="textMultiLine".
I found two workarounds:
1. if there are only one ConstrainLayout in the view hierarchy - for example, TextInputLayout is added directly to Activity's root ConstraintLayout. - add app:layout_constrainedHeight="true" to TextInputLayout.
2. if there are multiple ConstrainLayout's in the view hierarchy - for example, TextInputLayout is added to Fragment's root ConstraintLayout.which is contained in host Activity's ConstraintLayout - use former workaround and convert FIRST ConstraintLayout in the view hierarchy to RelativeLayout.
Maybe this issue is somehow linked to:
Try different layouts in sample project to test described cases and workarounds,