WAI
Status Update
Comments
mi...@slatwallcommerce.com <mi...@slatwallcommerce.com> #2
Confirmed!
ni...@gmail.com <ni...@gmail.com> #3
A workaround to anyone interested:
In the activity's onCreate method I call getResources().getConfiguration()
I then saves the data I'm interested about, e.g. locale and layoutDirection
final Configuration configuration = getResources().getConfiguration();
lastLocale = configuration.locale.toString();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
lastLayoutDirection = configuration.getLayoutDirection();
}
Now, in the onConfigurationChanged I simply check if those values actually changed, if not - that is the bug, so just do nothing, if so, update the values and do whatever you wanted to do.
Good Luck.
In the activity's onCreate method I call getResources().getConfiguration()
I then saves the data I'm interested about, e.g. locale and layoutDirection
final Configuration configuration = getResources().getConfiguration();
lastLocale = configuration.locale.toString();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
lastLayoutDirection = configuration.getLayoutDirection();
}
Now, in the onConfigurationChanged I simply check if those values actually changed, if not - that is the bug, so just do nothing, if so, update the values and do whatever you wanted to do.
Good Luck.
[Deleted User] <[Deleted User]> #4
I get onConfigurationChanged() even if no configChanges attribute is set in the AndroidManifest. I have a basic empty Activity and no configChanges attribute set i the Manifest, and onConfigurationChanged is called on device rotation.
This is when building with Target SDK version/compileSDKVersion 25, 24, 23, 21. Tested on devices running Android 7 and Android 6.0.1 and I get the same behaviour in all cases.
I would expect that onConfigurationChanged would be called only if configChanges="orientation" was set in the Manifest for that Activity. The documentation for the method Activity#onConfigurationChanged states:
"Note that this will only be called if you have selected configurations you would like to handle with the configChanges attribute in your manifest."
This is when building with Target SDK version/compileSDKVersion 25, 24, 23, 21. Tested on devices running Android 7 and Android 6.0.1 and I get the same behaviour in all cases.
I would expect that onConfigurationChanged would be called only if configChanges="orientation" was set in the Manifest for that Activity. The documentation for the method Activity#onConfigurationChanged states:
"Note that this will only be called if you have selected configurations you would like to handle with the configChanges attribute in your manifest."
dn...@google.com <dn...@google.com>
dn...@google.com <dn...@google.com> #5
Hi,
Can you provide the below requested information to better understand the issue:
Steps to reproduce
What steps do others need to take in order to reproduce the issue themselves?
Please share complete source code to test this issue.
Frequency
How frequently does this issue occur? (e.g 100% of the time, 10% of the time)
Expected output
What do you expect to occur?
Current output
What do you see instead?
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
Also please check this issue on android N latest build(7.1.1) and let us know the result.
Can you provide the below requested information to better understand the issue:
Steps to reproduce
What steps do others need to take in order to reproduce the issue themselves?
Please share complete source code to test this issue.
Frequency
How frequently does this issue occur? (e.g 100% of the time, 10% of the time)
Expected output
What do you expect to occur?
Current output
What do you see instead?
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
Also please check this issue on android N latest build(7.1.1) and let us know the result.
ne...@gmail.com <ne...@gmail.com> #6
Hi,
Steps to reproduce:
- Use basic project in Android Studio.
- Override onConfigurationChanged method in MainActivity.
- Call super as usual, and add some logging; Log.d("TAG", "onConfigurationChanged");
- Check Logcat
Frequency:
100%
[Expected] no "onConfigurationChanged" in Logcat, as method is never executed.
[Actual] onConfigurationChanged is printed, as onConfigurationChanged is called.
Affected version: 7.0
Not reproduced on 6.0.1
I have no 7.1.1 build, so cannot check.
Steps to reproduce:
- Use basic project in Android Studio.
- Override onConfigurationChanged method in MainActivity.
- Call super as usual, and add some logging; Log.d("TAG", "onConfigurationChanged");
- Check Logcat
Frequency:
100%
[Expected] no "onConfigurationChanged" in Logcat, as method is never executed.
[Actual] onConfigurationChanged is printed, as onConfigurationChanged is called.
Affected version: 7.0
Not reproduced on 6.0.1
I have no 7.1.1 build, so cannot check.
dn...@google.com <dn...@google.com> #7
We are not able to reproduce this issue on android 7.0 and android 7.1.1 version.
"onConfigurationChanged" method is not getting called hence no logs are seen in logcat.
But as per the comment #6 , you are able to see the issue on android 7.0. Can you please share logcat or bugreport with us?
logcat output
Seehttp://developer.android.com/tools/help/logcat.html . Copy and paste relevant sections of the logcat output into this issue.
Android bug report:
After reproducing the issue, navigate to developer settings, ensure ‘USB debugging’ is enabled, then enable ‘Bug report shortcut’. To take bug report, hold the power button and select the ‘Take bug report’ option.
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
"onConfigurationChanged" method is not getting called hence no logs are seen in logcat.
But as per the
logcat output
See
Android bug report:
After reproducing the issue, navigate to developer settings, ensure ‘USB debugging’ is enabled, then enable ‘Bug report shortcut’. To take bug report, hold the power button and select the ‘Take bug report’ option.
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
ne...@gmail.com <ne...@gmail.com> #8
Hi,
This is sample application you can use to reproduce an issue.
https://drive.google.com/open?id=0B-pfGUcclBmTVlN3cHRLR3lPbW8
It's nothing more then empty activity with overridden onConfigurationChanged.
Check AndroidManifest.xml. You'll see configChange attribute has not been specified.
Expected behavior is onConfigurationChanged not to be called.
On 7.0: It's called.
On 6.0.1: It's not called.
On 7.1.1: It's not called.
This is sample application you can use to reproduce an issue.
It's nothing more then empty activity with overridden onConfigurationChanged.
Check AndroidManifest.xml. You'll see configChange attribute has not been specified.
Expected behavior is onConfigurationChanged not to be called.
On 7.0: It's called.
On 6.0.1: It's not called.
On 7.1.1: It's not called.
dn...@google.com <dn...@google.com> #9
As onConfigurationChanged is not getting called on android N, latest build 7.1.1. Closing this issue as workingAsIntended on android N latest build.
Description
in your main activity's manifest put:
android:configChanges="locale|layoutDirection"
in you main activity class @override
"public void onConfigurationChanged(Configuration newConfig)"
it will get called on orientation even that is not suppose to.
only happens on Android 7 (Nougat) , working properly on other OS versions.