Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

what is the types of intent in android java

Intent i = new Intent();
i.setAction(Intent.ACTION_VIEW);
i.setData(Uri.parse("www.tutorialspoint.com"));
startActivity(i);
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #types #intent #android #java
ADD COMMENT
Topic
Name
5+8 =