Configuring lint checking in Java and XML source files
suggest changeYou can disable Lint checking from your Java and XML source files.
Configuring lint checking in Java
To disable Lint checking specifically for a Java class or method in your Android project, add the @SuppressLint
annotation to that Java code.
Example:
@SuppressLint("NewApi")
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
To disable checking for all Lint issues:
@SuppressLint("all")
Configuring lint checking in XML
You can use the tools:ignore
attribute to disable Lint checking for specific sections of your XML files.
For example:
tools:ignore="NewApi,StringFormatInvalid"
To suppress checking for all Lint issues in the XML element, use
tools:ignore="all"
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents