Assigned
Status Update
Comments
ra...@google.com <ra...@google.com> #2
I face with the same problem. I have different pageMargin in landscape and portrait and when viewpager is scrolled for the more than first position, after rotating device it is shifted.
I beleive the problem is inside onSizeChanged that is called after onConfigurationChanged, it has following code:
if (w != oldw) {
recomputeScrollPosition(w, oldw, mPageMargin, mPageMargin);
}
w always not equals oldw when changing orientation, so recomputeScrollPosition is called, but whit the same values for margin and oldMargin.
This should be fixed.
I beleive the problem is inside onSizeChanged that is called after onConfigurationChanged, it has following code:
if (w != oldw) {
recomputeScrollPosition(w, oldw, mPageMargin, mPageMargin);
}
w always not equals oldw when changing orientation, so recomputeScrollPosition is called, but whit the same values for margin and oldMargin.
This should be fixed.
fa...@gmail.com <fa...@gmail.com> #3
[Comment deleted]
Description
The ringtone picker (intent
ACTION_RINGTONE_PICKER
) as the cursor returned byRingtoneManager.cursor
(for the title column) use the system locale and there is no way to use the app locale set byAppCompatDelegate.setApplicationLocales()