본문 바로가기
Android/Android

Android(2)_Activity

by 미티치 2016. 5. 26.

 

■ Activity

 

 

Activity는 위에서 설명했듯이 앱 화면을 의미한다. 그냥 화면 = 액티비티 라고 부르는구나 라고 생각하는 것이 좋을 듯 하다. 안드로이드 앱은 하나 이상의 액티비티들로 구성되며 각 액티비티 구성 내용은 xml 파일로 작성된다. ( java로 작성하면 안되는 것은 아니지만 화면 구성을 위해 주로 편리한 xml을 이용하여 작성한다. )

 

이러한 액티비티는 Activity 클래스를 상속받아 구현하며, 앱 내에서 각 액티비티들은 느슨하게 묶여 있다. 이러한 액티비티는 액티비티 스택을 이용해서 관리된다. 액티비티 스택이란, 앱에서 호출되는 액티비티들을 유지하는 스택이며 현재 작업중인 액티비티가 스택 맨 위에 위치한다(LIFO)

 

 

Activity는 앱 실행동안 다음과 같은 상태가 될 수 있다.

 

- Active / Running

  : 디바이스 화면에서 사용자가 현재 작업 중인 액티비티 ( 액티비티 스택 최상단에 위치 )

- Paused

  : 사용자에게 보여지지만 현재 작업하지 않는 상태, 액티비티의 실행과 관련된 내부 상태정보는 유지

- Stopped

  : 실행이 비활성화되어 보여지지 않는 상태, 액티비티의 실행과 관련된 내부 상태정보는 계속 유지

- Killed

  : 종료되어 액티비티 스택에서 제거된 상태

 

    => Activity Life Cycle  

 

                                 

 

 

 

Intent액티비티 전환시 액티비티 간의 정보교환 방법을 제공하는 것으로, 한 액티비티에서 다른 액티비티를 호출 시 실행에 필요한 여러 정보를 제공한다. 인텐트는 명시적 인텐트와 암시적 인텐트로 구분할 수 있는데, 간단하게 설명하자면 명시적 인텐트(explicit intent)는 사용자가 새로운 액티비티를 호출할 때 어떤 액티비티를 호출할 것이라고 직접 명칭을 지정하는 것이고 암시적 인텐트(implicit intent)는 어떤

액티비티를 호출할 것이라고 지정하지 않고 장치에서 지정된 해당 정보를 처리할 수 있는 컴포넌트를 알아서 찾아주는 것이다.

 

 

Intent에 대한 더 자세한 설명과 예제는 다음 글엔서 설명하도록 하고 이번 글에서는 메인 액티비티에서 인텐트를 사용하는 아주아주아주 맛보기 예제를 보여줄 것입니다!!!

 

 

다음 예제는 암시적 인텐트, 즉 어떠한 액티비티 명칭을 지정하지 않고 웹사이트 url을 연결하거나 장치에서 전화를 거는 기능, 또 사진첩을 연결하는 기능을 구현한 예제이다.

 

 

♤ 예제

 

[ activity_main.xml ]

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.mijinpark.myapplication.MainActivity">
 
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/button1"
        android:text="Mititch"
        android:layout_centerHorizontal="true" />
 
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/Naver"
        android:id="@+id/buttonNaver"
        android:layout_below="@+id/button1"
        android:layout_centerHorizontal="true" />
 
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Call"
        android:id="@+id/buttonCall"
        android:layout_below="@+id/buttonNaver"
        android:layout_centerHorizontal="true" />
 
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Exit"
        android:id="@+id/buttonExit"
        android:layout_below="@+id/buttonGallary"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        />
 
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Gallary"
        android:id="@+id/buttonGallary"
        android:layout_below="@+id/buttonCall"
        android:layout_centerHorizontal="true"
        />
</RelativeLayout>
 
cs

 

 

[ activity_main.xml ]

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.example.mijinpark.myapplication;
 
import android.content.Intent;
import android.content.UriMatcher;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
 
public class MainActivity extends AppCompatActivity {
 
    Button button1;
    Button btnNaver;
    Button btnCall;
    Button btnExit;
    Button btnGallary;
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button1 = (Button) findViewById(R.id.button1);  //레퍼런스 연결
        btnNaver = (Button) findViewById(R.id.buttonNaver);
        btnCall = (Button) findViewById(R.id.buttonCall);
        btnGallary = (Button) findViewById(R.id.buttonGallary);
        btnExit = (Button) findViewById(R.id.buttonExit);
 
        button1.setOnClickListener(new View.OnClickListener(){
            public void onClick(View v){
                Toast.makeText(getApplicationContext(),"응~버튼눌렀어~",Toast.LENGTH_SHORT).show();   //lengthlong은 오래 뜨는거
            }
        });
 
        btnNaver.setOnClickListener(new View.OnClickListener(){
            public void onClick(View v){
                Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.naver.com"));
                startActivity(intent);
            }
        });
 
        btnCall.setOnClickListener(new View.OnClickListener(){
            public void onClick(View v){
                Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("tel://119"));
                startActivity(intent);
            }
        });
        btnGallary.setOnClickListener(new View.OnClickListener(){
            public void onClick(View v){
                Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("content://media/internal/images/media"));
                startActivity(intent);
            }
        });
        btnExit.setOnClickListener(new View.OnClickListener(){
            public void onClick(View v){
                finish();
            }
        });
 
    }
 
    public void ooo1(View v){
 
    }
}
 
cs

 

 

 

 

실행 결과

 

    

 

- MITITCH 버튼은 Toast 실행을 위해 넣은 버튼

- Naver를 클릭하면 인터넷 브라우저가 켜지면서 naver로 연결됨

- Call을 클릭하면 장치 내부 전화 앱이 켜지면서 119가 찍혀있음

- Gallary 역시 갤러리 앱을 연결

- Exit는 앱 끝내기

 

 

'Android > Android' 카테고리의 다른 글

Android(5)_Intent  (0) 2016.05.31
Android 계산기  (0) 2016.05.31
Android(4)_고급Widget  (0) 2016.05.30
Android(3)_Layout  (0) 2016.05.27
Android(1)_Structure  (0) 2016.05.26