Status Update
Comments
jb...@google.com <jb...@google.com> #2
Androidx.activity actually doesn't do anything with those APIs and this behavior comes from the framework. Moving it to that component.
al...@gmail.com <al...@gmail.com> #3
Thank you for letting me know. Then which subject should we have instead of Android Public Tracker > App Development > Jetpack (androidx) > Activity ?
il...@google.com <il...@google.com> #4
Android Public Tracker > Framework is the correct component for framework issues.
su...@google.com <su...@google.com> #5
Please provide the following additional information:
Please mention the steps to be followed for reproducing the issue with the given sample apk.
Android bug report capturing
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory.
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Screen record of the issue, for clarity
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
al...@gmail.com <al...@gmail.com> #6
1 - If you click on "click me" button in the 1st Activity, 2nd Activity will start with option bundle. 2 - If you search in searchView, button in the 2nd Activity will be gone. 3 - click on device home button and then resume the app again, button in 2nd activity becomes visible which is unexpected. 4 - if you search again, click on device home button and resume the app again, button in the 2nd Activity will be gone as expected. (Unexpected behavior happens just in the 1st search)
Bug report capturing :
Screen recording :
Sample code :
APK :
su...@google.com <su...@google.com> #7
We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
Description
Component used: Activity
The simple sample of this issue can be found here :https://github.com/alirezaeiii/SearchViewOption
I have following code in MainActivity:
As you see I startActivty with options as bundle. In the SearchActivity I have following code :
As you see I hide the button when there is a query. For the first time if you enter a query, turn off screen and turn it on (SearchActivity resumed), button appears again. if you search again and turn off screen and turn it on (SearchActivity resumed), button is gone as expected.
This issue is related to options bundle that I pass in startActivity. If I don't pass it and startActivity(intent) everything works as expected.
Why options bundle introduce this problem?