Android.............!!
View------All small small rectangular boxes that we see on the screens are views.- its an mobile application software stack
- has O.S(linux), library's, Dalvik virtual system,Framework,Application.
- we write our program(application) on framework in Java.
- Activity ---------------------- Each screen in android with which we can interact is an activity.
- Services ----------------------Its the task that runs at the background even without user interaction
- Content provider--------------It provides or shares information with other application.
- Broadcast Receiver-----------It gives all announcements.
- Intent-------------------------Forms a connection between components except with content provider.
- Manifest file------------------ Keeps overall information of its components.
- like we see edit text box,button box,ckeck box etc
Functions used
- onCreate()----------first function is called first by activity .
- setContentView()---to set final design screen on the top of graphical window.
- Toast.makeText(getApplicationContext(),"Text",duration)----prints text on screen,its like println in java.
No comments:
Post a Comment