DEV Community

Removing self from Android implicit intent

daisy1754 on February 22, 2018

Android provides an implicit intent to open apps based on user's intent (eg., I want to take a picture). It is simple yet very useful feature for u...
Collapse
 
chrisvasqm profile image
Christian Vasquez • Edited

Hey daisy1754,

Thanks for sharing this!

Side note:

If you add the word "java" right after the triple backtick on the code block it will make your code easier to read.

Examples

Without "java"

public void main(String[] args) {
    System.out.println("Hello World!");
}

With "java"

public void main(String[] args) {
    System.out.println("Hello World!");
}