summaryrefslogtreecommitdiff
path: root/core/java/android/app/FragmentContainer.java
Commit message (Collapse)AuthorAgeFilesLines
* Migrate frameworks/base javadocs references to androidxAlan Viverette2022-02-091-1/+1
| | | | | | | | | | | Does not remove Support Library artifacts from docs classpath (ApiDocs.bp) because they are still used in development/samples, which is not as easy to migrate as javadoc. Bug: 158779503 Test: make docs Exempt-From-Owner-Approval: Mass find/replace for androidx migration Change-Id: Icf7f53ec36a0e970413352e2ebf40ce9d60ed17e
* Improve Fragment+Loader deprecation JavadocIan Lake2017-12-201-1/+2
| | | | | | | | | | | | | | | Make it clear that the framework versions of Fragments and Loaders should be replaced with their identically named versions in the Support Library. Reference the recent work on Lifecycle as an example of a Support Library only change that should motivate developers to switch to the Support Library equivalents. Test: Reviewed new Javadoc BUG: 70336450 Change-Id: I93151fa0a316bba824c2e55f80f7de9d30bed3c6
* Deprecate framework Fragments and LoadersIan Lake2017-11-131-0/+3
| | | | | | | | | | | | Redirect developers to use the Support Library versions of Fragments and Loaders to ensure that they get consistent behavior across versions of Android and all devices as well as access to Lifecycle improvements. Test: Confirmed APIs deprecated in current.txt BUG: 68381801 Change-Id: I58ec599e557fc93c8547c45ba7c9ced96b0c8616
* Hide FragmentContainer#instantiate for API 26Adam Powell2017-05-011-0/+2
| | | | | | | | Bug 37638617 Change-Id: I065cd31d6ce987155669f72eff0e0d6d8a9430ab Test: none; hiding API only
* Update more implementations of findViewById()Alan Viverette2017-04-131-1/+1
| | | | | | Bug: 24137209 Test: make checkbuild -j32 Change-Id: I104969fc74d6dc1d159e3d1ff5926640b124a540
* Allow FragmentContainer to play a role in fragment constructionJason Monk2017-01-121-0/+11
| | | | | | | | This allows class swapping, dependency injection, and other fun stuff. Test: manual Change-Id: I93e17ccf9cebb6f542903d31597b5ea41544e069
* Remove dependency upon FragmentActivityTodd Kennedy2015-04-301-0/+38
The FragmentManagerImpl is intimately tied with a FragmentActivity. In many cases, we want to be able to create / manage Fragments outside of a FragmentManager. This defines a FragmentController interface that can be used by any class to host Fragments. Bug: 19569654 Change-Id: I6816a5c1815122d206062b9f4584ad460b3d41dd