This is a warning.
| |
Use FragmentContainerView instead of the | |
Warning | |
Correctness | |
Android | |
Android Open Source Project | |
androidx.fragment | |
Lint 7.0 | |
Lint 8.0 and 8.1 | |
1.2.0 | |
Resource files | |
This check runs on the fly in the IDE editor | |
https://developer.android.com/reference/androidx/fragment/app/FragmentContainerView.html | |
2019 |
FragmentTransaction
under the hood to add the initial fragment,
allowing further FragmentTransaction operations on the
FragmentContainerView and providing a consistent timing
for lifecycle events.
Here is an example of lint warnings produced by this check:
res/layout/layout.xml:5:Warning: Replace the <fragment> tag with
FragmentContainerView. [FragmentTagUsage]
<fragment android:name="androidx.fragment.app.Test'$'InflatedFragment"
--------
Here is the source file referenced above:
res/layout/layout.xml
:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment android:name="androidx.fragment.app.Test'$'InflatedFragment"
android:id="@+id/child_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
You can also visit the source code for the unit tests for this check to see additional scenarios.
The above example was automatically extracted from the first unit test
found for this lint check, FragmentTagDetector.expectFail
.
To report a problem with this extracted sample, visit
https://issuetracker.google.com/issues/new?component=460964.
// build.gradle.kts
implementation("androidx.fragment:fragment:1.8.5")
// build.gradle
implementation 'androidx.fragment:fragment:1.8.5'
// build.gradle.kts with version catalogs:
implementation(libs.fragment)
# libs.versions.toml
[versions]
fragment = "1.8.5"
[libraries]
# For clarity and text wrapping purposes the following declaration is
# shown split up across lines, but in TOML it needs to be on a single
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
# when pasting into libs.versions.toml:
fragment = {
module = "androidx.fragment:fragment",
version.ref = "fragment"
}
1.8.5 is the version this documentation was generated from; there may be newer versions available.
Additional details about androidx.fragment:fragment.
You can suppress false positives using one of the following mechanisms:
tools:ignore="FragmentTagUsage"
on the problematic XML element (or one of its enclosing elements).
You may also need to add the following namespace declaration on the
root element in the XML file if it's not already there:
xmlns:tools="http://schemas.android.com/tools"
.
<?xml version="1.0" encoding="UTF-8"?>
<fragment xmlns:tools="http://schemas.android.com/tools"
tools:ignore="FragmentTagUsage" ...>
...
</fragment>
lint.xml
file in the source tree which turns off
the check in that folder and any sub folder. A simple file might look
like this:
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="FragmentTagUsage" severity="ignore" />
</lint>
Instead of ignore
you can also change the severity here, for
example from error
to warning
. You can find additional
documentation on how to filter issues by path, regular expression and
so on
here.
lintOptions {
disable 'FragmentTagUsage'
}
In Android projects this should be nested inside an android { }
block.
lint
, using the --ignore
flag:
$ lint --ignore FragmentTagUsage ...`