Activities They dictate the UI and handle the user interaction to the smart phone screen. public class MainActivity extends Activity { }
|
|||||||||||||
Services They handle background processing associated with an application. public class MyService extends Service { } |
|||||||||||||
Broadcast Receivers They handle communication between Android OS and applications. public class MyReceiver extends BroadcastReceiver { public void onReceive(context,intent){} } |
|||||||||||||
Content Providers They handle data and database management issues. public class MyContentProvider extends ContentProvider { public void onCreate(){} }
|
Wednesday, 14 December 2016
Andriod Application Component
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment