Status Update
Comments
hu...@google.com <hu...@google.com>
[Deleted User] <[Deleted User]> #2
Please include a sample project that reproduces your issue.
do...@google.com <do...@google.com> #3
Steps to reproduce:
1. Press on "Search" icon;
2. Write something;
3. Search this text, keyboard will be dismissed;
4. Tap on "Dialog" button;
5. Dissmiss dialog;
With the new 1.5.0 fragment library version text will be cleared in the search box after dismissing dialog.
In the version 1.4.1 and lower text in the search is not clearing and this is correct behaviour.
Please suggest some workarounds or how to fix this issue?
sa...@peilicke.de <sa...@peilicke.de> #4
ya...@lightricks.com <ya...@lightricks.com> #5
hu...@google.com <hu...@google.com>
an...@gmail.com <an...@gmail.com> #6
np...@platformscience.com <np...@platformscience.com> #7
Hello
I raised similar issue with this ticket
This makes the SearchView unusable/broken when fragments are changed (i.e base on searchView input query)
What can we do to fix this problem? What is the progress of work on solving this problem?
st...@gmail.com <st...@gmail.com> #8
do...@gmail.com <do...@gmail.com> #9
Any idea on when it will be fixed?
al...@gmail.com <al...@gmail.com> #10
st...@gmail.com <st...@gmail.com> #11
Can you update regarding any progress on this issue.
ri...@gmail.com <ri...@gmail.com> #13
Branch: androidx-main
commit 50f098644adc703ae218b0b7e999629f516a0241
Author: sanura <sanura@google.com>
Date: Thu Mar 02 00:11:35 2023
Add check to only invalidate options menu when contributing menu items
FragmentManager previously appropriately only added
a MenuProvider when the host is a MenuHost **and**
we are at the root fragment that is providing the
menu items. This behavior should be mirrored when
removing a MenuProvider as well, so that only
components that directly contribute menu items will
invalidate the options menu.
Bug: 244336571
Test: all tests pass
Change-Id: I9404ee9fcc9ce6b80d70a93bea720fe4ccf583a0
M fragment/fragment/src/androidTest/java/androidx/fragment/app/FragmentContainerInflatedFragmentTest.kt
M fragment/fragment/src/androidTest/java/androidx/fragment/app/OptionsMenuFragmentTest.kt
M fragment/fragment/src/androidTest/java/androidx/fragment/app/test/FragmentTestActivity.kt
M fragment/fragment/src/main/java/androidx/fragment/app/FragmentActivity.java
M fragment/fragment/src/main/java/androidx/fragment/app/FragmentManager.java
ma...@gmail.com <ma...@gmail.com> #14
Please show what to write on gradle file.
at...@adobe.com <at...@adobe.com> #15
This has been fixed internally and will be available in the Fragment 1.6.0-alpha07
release.
ad...@gmail.com <ad...@gmail.com> #16
It's part of the material dependency, perhaps?
gs...@gmail.com <gs...@gmail.com> #17
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.fragment:fragment:1.6.0-alpha07
jb...@google.com <jb...@google.com> #18
br...@google.com <br...@google.com> #19
It says "Duplicate class found".
The IDE doesn't provide any useful explanation of what is the class that is duplicated and what to do about it.
Please help.
br...@google.com <br...@google.com> #20
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.fragment:fragment:1.5.6
br...@google.com <br...@google.com>
ap...@google.com <ap...@google.com> #21
br...@google.com <br...@google.com>
il...@google.com <il...@google.com> #22
@21 androidx.fragment:fragment:1.5.6 is a STABLE release. It has the fix we need. The androidx.fragment:fragment:1.6.0-alpha07 is an alpha as it says. 1.6 is "work in progress". 1.6.0 is still not a stable release. Use "alpha" only for testing
ju...@google.com <ju...@google.com> #23
ba...@gmail.com <ba...@gmail.com> #24
debugImplementation "androidx.test:monitor:1.6.1"
debugImplementation("androidx.fragment:fragment-ktx:1.6.0-alpha04")
debugImplementation 'androidx.test:core-ktx:1.5.0'
debugImplementation 'androidx.test:rules:1.5.0'
debugImplementation 'androidx.test:runner:1.5.2'
debugImplementation("androidx.fragment:fragment-testing-manifest:1.6.0-alpha04")
androidTestImplementation("androidx.fragment:fragment-testing:1.6.0-alpha04")
ba...@gmail.com <ba...@gmail.com> #25
jb...@google.com <jb...@google.com> #26
Please file a new bug with a minimal project that reproduces the issue.
Description
The reason of this limitation is that activities defined in test APK run in different process from the target process (unless you set sharedUserId). FragmentScenario uses EmptyFragmentActivity as the host Activity and it is defined in the library's manifest. In order to start EmptyFragmentActivity in the target app process, the manifest needs to be merged into the target APK.
This thread is to track the progress of removing this limitation.