Fixed
Status Update
Comments
su...@gmail.com <su...@gmail.com> #3
I'm going to leave this here as well, for reference: http://stackoverflow.com/questions/40171801/bottomnavigationview-hides-when-scrolling-up-instead-of-down
In my use case, the BottomNavigationView is inside a fragment, inside a FrameLayout which is contained in a CoordinatorLayout and the scroll to hide technique works, but in reverse compared to how it's supposed to work. Using the BottomNavigationView directly inside the CoordinatorLayout doesn't have any scroll behavior though.
In my use case, the BottomNavigationView is inside a fragment, inside a FrameLayout which is contained in a CoordinatorLayout and the scroll to hide technique works, but in reverse compared to how it's supposed to work. Using the BottomNavigationView directly inside the CoordinatorLayout doesn't have any scroll behavior though.
al...@android.com <al...@android.com>
ch...@google.com <ch...@google.com>
ch...@google.com <ch...@google.com> #4
I'm having the same issue. There is an estimation when this issue will be fixed?
ja...@gmail.com <ja...@gmail.com> #5
This has been released in support library 25.0.1.
ch...@google.com <ch...@google.com> #6
Scroll behavior is still missing. For those that are looking for one, sample project archive contains it.
al...@android.com <al...@android.com> #7
Elevation part was fixed. Still working on the behavior.
do...@azimo.com <do...@azimo.com> #8
Elevation is broken if you use app:itemBackground rather than android:background since it's setting the elevation on itself rather than mMenuView. Why is itemBackground exposed? Should I not just use android:background?
Description
Version used: 24.2.0
Theme used: Theme.AppCompat.Light
Devices/Android versions reproduced on: Nexus 5x API 23, Emulator API 24
With the addition of the password toggle view in 24.2.0, in TextInputLayout#updatePasswordToggleView, if the password toggle view is not being shown it falls back to running the following code:
// Make sure that we remove the dummy end compound drawable
final Drawable[] compounds = TextViewCompat.getCompoundDrawablesRelative(mEditText);
TextViewCompat.setCompoundDrawablesRelative(mEditText, compounds[0], compounds[1],
null, compounds[2]);
This makes it impossible to use a right compound drawable with a TextInputLayout.