java - What does through intent and programmatically mean? -
I am searching the code for my Android application and I get these two words. It says that I can do this by INTENT or can I do this for the program?
What is the difference between the two on the way? Thanks
"Programmatic" means that some will be in Java code. Mostly it is used when making attribute or setting on view
when XML is created through a view
xml, then the XML can not be changed (But the view
can be in the Java code in the program code) If it is programmatically created, you do not create it in XML before compiling it, instead it is through Java code is done.
Intent
> activity access settings and other such things
Comments
Post a Comment