Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

Wook No.1

Android Activity 본문

Android

Android Activity

Wook No.1 2021. 5. 12. 14:26

Activity

애플리케이션 구성 요소로서, 사용자가 전화 걸기, 사진 찍기, 이메일 보내기 또는 지도 보기 등의 일을 하기 위해 상호작용할 수 있는 화면을 제공합 니다. 액티비티마다 창이 하나씩 주어져 이곳에 사용자 인터페이스를 끌어올 수 있습니다. 이 창은 일반적으로 화면을 가득 채우지만, 작은 창으로 만들어 다른 창 위에 띄울 수도 있습니다.

 

 

 public class Activity extends ApplicationContext {
     
protected void onCreate(Bundle savedInstanceState);

     
protected void onStart();

     
protected void onRestart();

     
protected void onResume();

     
protected void onPause();

     
protected void onStop();

     
protected void onDestroy();
 
}
 

 

 

Activity 생명주기

activity 생명주기

 

 

'Android' 카테고리의 다른 글

Android In App Billing 인앱구현  (0) 2021.05.24
Android In App Billing 인앱등록  (0) 2021.05.24
[Android] Parcelable vs Serializable  (0) 2021.05.12
Handler memory leak  (0) 2021.05.07
Webview PG 결제 이슈  (0) 2021.05.04
Comments