Presentasi sedang didownload. Silahkan tunggu

Presentasi sedang didownload. Silahkan tunggu

ANDROID ACTIVITY.

Presentasi serupa


Presentasi berjudul: "ANDROID ACTIVITY."— Transcript presentasi:

1 ANDROID ACTIVITY

2 Activity Concept Activity is a public class in android application.
Activity is connected with user in which activity creates windows or User Interface by setContentView(View)

3 Activity Cycle Android application activity is managed by activity stack When activity is started, activity is put at the topmost of the stack, activities run already are put behind that stack. When new activity comes, it will be put at the first stack, the topmost stack before will be the second.

4 4 Situation of Activity Activity/running, if activity is at the top of the stack Pause, if activity is unused, but still exist or visible Stopped, if activity is unused and replaced by other activity. Restart, if activity is paused or stopped and system can drop this activity from memory, when user needs this activity, this activity can be returned to the initial condition (restart)

5 Lifecycle Activity

6 3 Looping Entire Lifetime : Activity starts from onCreate() until onDestroy(). It must set to global when defined. Visible Lifetime : Activity starts from onCreate() until onStop(). Foreground Lifetime : Activity starts from onResume() until onPause

7 The Syntax (Already in Class ext)
Public class Activity { protected void onCreate(Bundle savedInstanceState); protected void onStart(); protected void onRestart(); protected void onResume (); protected void onPause(); protected void onStop(); protected void onDestroy(); }

8 Killable Killable : Apakah memungkinkan bagi sistem untuk mematikan proses host activity atau tidak. Jika killable NO berarti melindungi host activity atau activitynya tidak dimatikan, contoh activitynya : OnCreate OnRestart OnStart OnResume Jika killable YES berarti activity dapat diakhiri/dimatikan, contoh activitynya : OnPause OnStop OnDestroy


Download ppt "ANDROID ACTIVITY."

Presentasi serupa


Iklan oleh Google