Syllabus for Android Application Development Final Examination
1. Android Activity Lifecycle
Definition & Importance: Understanding the role of Activity Lifecycle.
Activity States: From onCreate() to onDestroy().
Detailed Lifecycle Methods:
- onCreate(), onStart(), onResume()
- onPause(), onStop(), onRestart(), onDestroy()
Lifecycle Flow: Triggers and method order.
Visible Lifetime: Key moments when the activity is visible.
2. Lifecycle Method Flow
Understanding triggers for each method and their sequence in the lifecycle.
3. Activity Lifecycle: The Visible Lifetime
Focus on the states when an activity is visible to the user.
4. Layouts in Android
Overview: Types and uses of layouts.
RelativeLayout:
- Positioning views relative to parent or other views.
- Using margins for spacing.
LinearLayout:
- Arranging views in rows or columns.
- Orientation and weight distribution.
GridLayout:
- Designing grid-based layouts.